diff options
author | Filipe Brandenburger <filbranden@google.com> | 2014-12-23 10:38:50 -0800 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-12-25 10:56:42 -0500 |
commit | 946be29c98e1797f2e0912c5f2da31ee3816ee58 (patch) | |
tree | 098a10236f148a536fe766007db5f6e6fc2099f0 /src/libsystemd/sd-bus/bus-util.c | |
parent | 9bb0c7cfbb253c5b983efaed51a65bcbf422d8d7 (diff) |
bus: remove spurious include of <sys/capability.h>
They do not use any functions from libcap directly. The CAP_SYS_ADMIN constant
in use by bus-objects.c comes from <linux/capability.h> imported through
"missing.h". The "missing.h" header is imported through "util.h" which gets
imported in "bus-util.h".
Tested that everything builds cleanly after this change.
Diffstat (limited to 'src/libsystemd/sd-bus/bus-util.c')
-rw-r--r-- | src/libsystemd/sd-bus/bus-util.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libsystemd/sd-bus/bus-util.c b/src/libsystemd/sd-bus/bus-util.c index 389b6ad71c..2c3da3ce92 100644 --- a/src/libsystemd/sd-bus/bus-util.c +++ b/src/libsystemd/sd-bus/bus-util.c @@ -20,7 +20,6 @@ ***/ #include <sys/socket.h> -#include <sys/capability.h> #include "systemd/sd-daemon.h" |