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 /runit/runsvdir.c | |
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 'runit/runsvdir.c')
-rw-r--r-- | runit/runsvdir.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runit/runsvdir.c b/runit/runsvdir.c index 492c2a5..f6aaeb7 100644 --- a/runit/runsvdir.c +++ b/runit/runsvdir.c @@ -73,7 +73,7 @@ struct globals { static void fatal2_cannot(const char *m1, const char *m2) { - bb_perror_msg_and_die("%s: fatal: cannot %s%s", svdir, m1, m2); + bb_perror_msg_and_die("%s: fatal: can't %s%s", svdir, m1, m2); /* was exiting 100 */ } static void warn3x(const char *m1, const char *m2, const char *m3) @@ -82,7 +82,7 @@ static void warn3x(const char *m1, const char *m2, const char *m3) } static void warn2_cannot(const char *m1, const char *m2) { - warn3x("cannot ", m1, m2); + warn3x("can't ", m1, m2); } #if ENABLE_FEATURE_RUNSVDIR_LOG static void warnx(const char *m1) @@ -256,14 +256,14 @@ int runsvdir_main(int argc UNUSED_PARAM, char **argv) if (rploglen < 7) { warnx("log must have at least seven characters"); } else if (piped_pair(logpipe)) { - warnx("cannot create pipe for log"); + warnx("can't create pipe for log"); } else { close_on_exec_on(logpipe.rd); close_on_exec_on(logpipe.wr); ndelay_on(logpipe.rd); ndelay_on(logpipe.wr); if (dup2(logpipe.wr, 2) == -1) { - warnx("cannot set filedescriptor for log"); + warnx("can't set filedescriptor for log"); } else { pfd[0].fd = logpipe.rd; pfd[0].events = POLLIN; |