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/core/bus-policy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/bus-policy.c') diff --git a/src/core/bus-policy.c b/src/core/bus-policy.c index 710283dcd..064eee1c8 100644 --- a/src/core/bus-policy.c +++ b/src/core/bus-policy.c @@ -160,7 +160,7 @@ int bus_kernel_make_starter( /* The higher 32bit of the bus_flags fields are considered * 'incompatible flags'. Refuse them all for now. */ if (hello->bus_flags > 0xFFFFFFFFULL) - return -ENOTSUP; + return -EOPNOTSUPP; return fd; } -- cgit v1.2.3