From 15411c0cb1192799b37ec8f25d6f30e8d7292fc6 Mon Sep 17 00:00:00 2001 From: David Herrmann Date: Fri, 13 Mar 2015 14:08:00 +0100 Subject: tree-wide: there is no ENOTSUP on linux Replace ENOTSUP by EOPNOTSUPP as this is what linux actually uses. --- src/path/path.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/path') diff --git a/src/path/path.c b/src/path/path.c index 99a4f2f3c0..f7736a4202 100644 --- a/src/path/path.c +++ b/src/path/path.c @@ -115,7 +115,7 @@ static int print_home(const char *n) { } log_error("Path %s not known.", n); - return -ENOTSUP; + return -EOPNOTSUPP; } static void help(void) { -- cgit v1.2.3-54-g00ecf