diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-13 09:08:27 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-13 09:08:27 +0100 |
commit | 6331cf059ccfdf35f4e5a505cbae885094cc41b0 (patch) | |
tree | ccb4b4f0d96d9636861a75f7fc6c97b8b15bd306 /init | |
parent | f4fee418ae9f5308b4d32bc8d4e618f779f3203f (diff) | |
download | busybox-w32-6331cf059ccfdf35f4e5a505cbae885094cc41b0.tar.gz busybox-w32-6331cf059ccfdf35f4e5a505cbae885094cc41b0.tar.bz2 busybox-w32-6331cf059ccfdf35f4e5a505cbae885094cc41b0.zip |
*: use "can't" instead of "cannot"
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'init')
-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 6bee8f35c..5240e47a5 100644 --- a/init/init.c +++ b/init/init.c | |||
@@ -305,7 +305,7 @@ static void init_exec(const char *command) | |||
305 | ioctl(STDIN_FILENO, TIOCSCTTY, 0 /*only try, don't steal*/); | 305 | ioctl(STDIN_FILENO, TIOCSCTTY, 0 /*only try, don't steal*/); |
306 | } | 306 | } |
307 | BB_EXECVP(cmd[0] + dash, cmd); | 307 | BB_EXECVP(cmd[0] + dash, cmd); |
308 | message(L_LOG | L_CONSOLE, "cannot run '%s': %s", cmd[0], strerror(errno)); | 308 | message(L_LOG | L_CONSOLE, "can't run '%s': %s", cmd[0], strerror(errno)); |
309 | /* returns if execvp fails */ | 309 | /* returns if execvp fails */ |
310 | } | 310 | } |
311 | 311 | ||
@@ -899,7 +899,7 @@ int init_main(int argc UNUSED_PARAM, char **argv) | |||
899 | BB_EXECVP(argv[0], argv); | 899 | BB_EXECVP(argv[0], argv); |
900 | } else if (enforce > 0) { | 900 | } else if (enforce > 0) { |
901 | /* SELinux in enforcing mode but load_policy failed */ | 901 | /* SELinux in enforcing mode but load_policy failed */ |
902 | message(L_CONSOLE, "cannot load SELinux Policy. " | 902 | message(L_CONSOLE, "can't load SELinux Policy. " |
903 | "Machine is in enforcing mode. Halting now."); | 903 | "Machine is in enforcing mode. Halting now."); |
904 | exit(EXIT_FAILURE); | 904 | exit(EXIT_FAILURE); |
905 | } | 905 | } |