diff options
author | Tom Gundersen <teg@jklm.no> | 2014-02-05 17:07:20 +0100 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-02-06 17:30:01 +0100 |
commit | 5d63309cf5a6fc5256391fa4ddb72cf68e2e27e5 (patch) | |
tree | af4d88e7ae9f738fabb6accf9d8e349a71d253eb /src/nspawn | |
parent | 75cb8502dfec0a6a5305fe766d4b6a1a04a43549 (diff) |
nspawn: fix HAVE_SELINUX ifdef
Diffstat (limited to 'src/nspawn')
-rw-r--r-- | src/nspawn/nspawn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index 57818f9bd0..f904ebea64 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -41,7 +41,7 @@ #include <sys/socket.h> #include <linux/netlink.h> #include <sys/eventfd.h> -#if HAVE_SELINUX +#ifdef HAVE_SELINUX #include <selinux/selinux.h> #endif @@ -1534,7 +1534,7 @@ int main(int argc, char *argv[]) { } else env_use = (char**) envp; -#if HAVE_SELINUX +#ifdef HAVE_SELINUX if (arg_process_label) if (setexeccon(arg_process_label) < 0) log_error("setexeccon(\"%s\") failed: %m", arg_process_label); |