chiark / gitweb /
nspawn: fix HAVE_SELINUX ifdef
authorTom Gundersen <teg@jklm.no>
Wed, 5 Feb 2014 16:07:20 +0000 (17:07 +0100)
committerTom Gundersen <teg@jklm.no>
Thu, 6 Feb 2014 16:30:01 +0000 (17:30 +0100)
src/nspawn/nspawn.c

index 57818f9bd044b472a63791dd521dd9e3004a3825..f904ebea6439c80edaa91411e5cc3f0c3a1b7978 100644 (file)
@@ -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);