diff options
author | Denys Vlasenko | 2009-11-13 09:08:27 +0100 |
---|---|---|
committer | Denys Vlasenko | 2009-11-13 09:08:27 +0100 |
commit | 6331cf059ccfdf35f4e5a505cbae885094cc41b0 (patch) | |
tree | ccb4b4f0d96d9636861a75f7fc6c97b8b15bd306 /init | |
parent | f4fee418ae9f5308b4d32bc8d4e618f779f3203f (diff) | |
download | busybox-6331cf059ccfdf35f4e5a505cbae885094cc41b0.zip busybox-6331cf059ccfdf35f4e5a505cbae885094cc41b0.tar.gz |
*: 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 6bee8f3..5240e47 100644 --- a/init/init.c +++ b/init/init.c @@ -305,7 +305,7 @@ static void init_exec(const char *command) ioctl(STDIN_FILENO, TIOCSCTTY, 0 /*only try, don't steal*/); } BB_EXECVP(cmd[0] + dash, cmd); - message(L_LOG | L_CONSOLE, "cannot run '%s': %s", cmd[0], strerror(errno)); + message(L_LOG | L_CONSOLE, "can't run '%s': %s", cmd[0], strerror(errno)); /* returns if execvp fails */ } @@ -899,7 +899,7 @@ int init_main(int argc UNUSED_PARAM, char **argv) BB_EXECVP(argv[0], argv); } else if (enforce > 0) { /* SELinux in enforcing mode but load_policy failed */ - message(L_CONSOLE, "cannot load SELinux Policy. " + message(L_CONSOLE, "can't load SELinux Policy. " "Machine is in enforcing mode. Halting now."); exit(EXIT_FAILURE); } |