diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-27 19:20:00 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-27 19:20:00 +0000 |
commit | b71675419929a77031559ae5ba6399a0fdc2847b (patch) | |
tree | 7693dfd9721f689fde8e28cf888c3cd38fb5a7e7 | |
parent | cce38586aee7fe892ca1c837ee08a96bd3454ee9 (diff) | |
download | busybox-b71675419929a77031559ae5ba6399a0fdc2847b.tar.gz |
init: trivial compile fix
-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) } else if (enforce > 0) { /* SELinux in enforcing mode but load_policy failed */ /* At this point, we probably can't open /dev/console, so log() won't work */ - message(CONSOLE, "Cannot load SELinux Policy. Machine is in enforcing mode. Halting now."); + message(L_CONSOLE, "Cannot load SELinux Policy. " + "Machine is in enforcing mode. Halting now."); exit(1); } } @@ -1014,7 +1015,6 @@ int init_main(int argc, char **argv) signal(SIGHUP, SIG_IGN); #endif /* FEATURE_USE_INITTAB */ - /* Now run the looping stuff for the rest of forever */ while (1) { /* run the respawn stuff */ |