diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-02-27 19:20:00 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-02-27 19:20:00 +0000 |
commit | 1128255ef476a46a91b2a66ed0ccf8a76fd5915f (patch) | |
tree | 7693dfd9721f689fde8e28cf888c3cd38fb5a7e7 | |
parent | 22bf91ab985f7eb544340977ee6991b114e94e15 (diff) | |
download | busybox-w32-1128255ef476a46a91b2a66ed0ccf8a76fd5915f.tar.gz busybox-w32-1128255ef476a46a91b2a66ed0ccf8a76fd5915f.tar.bz2 busybox-w32-1128255ef476a46a91b2a66ed0ccf8a76fd5915f.zip |
init: trivial compile fix
git-svn-id: svn://busybox.net/trunk/busybox@17979 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | init/init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/init/init.c b/init/init.c index ec18332fb..bc8979859 100644 --- a/init/init.c +++ b/init/init.c | |||
@@ -987,7 +987,8 @@ int init_main(int argc, char **argv) | |||
987 | } else if (enforce > 0) { | 987 | } else if (enforce > 0) { |
988 | /* SELinux in enforcing mode but load_policy failed */ | 988 | /* SELinux in enforcing mode but load_policy failed */ |
989 | /* At this point, we probably can't open /dev/console, so log() won't work */ | 989 | /* At this point, we probably can't open /dev/console, so log() won't work */ |
990 | message(CONSOLE, "Cannot load SELinux Policy. Machine is in enforcing mode. Halting now."); | 990 | message(L_CONSOLE, "Cannot load SELinux Policy. " |
991 | "Machine is in enforcing mode. Halting now."); | ||
991 | exit(1); | 992 | exit(1); |
992 | } | 993 | } |
993 | } | 994 | } |
@@ -1014,7 +1015,6 @@ int init_main(int argc, char **argv) | |||
1014 | signal(SIGHUP, SIG_IGN); | 1015 | signal(SIGHUP, SIG_IGN); |
1015 | #endif /* FEATURE_USE_INITTAB */ | 1016 | #endif /* FEATURE_USE_INITTAB */ |
1016 | 1017 | ||
1017 | |||
1018 | /* Now run the looping stuff for the rest of forever */ | 1018 | /* Now run the looping stuff for the rest of forever */ |
1019 | while (1) { | 1019 | while (1) { |
1020 | /* run the respawn stuff */ | 1020 | /* run the respawn stuff */ |