diff options
author | Denis Vlasenko | 2006-11-18 22:04:09 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-11-18 22:04:09 +0000 |
commit | 89f0b3486dfea233e6000f9af95b39a3ea7fd96e (patch) | |
tree | fc0d65e0d33b5b526b0d44d4c4da8143be3b53b1 /miscutils/crontab.c | |
parent | 61126ab30a90b74e45a79ccb97074ab71afa6054 (diff) | |
download | busybox-89f0b3486dfea233e6000f9af95b39a3ea7fd96e.zip busybox-89f0b3486dfea233e6000f9af95b39a3ea7fd96e.tar.gz |
rodata cleanup. "unable to" == "cannot". -300 bytes
Diffstat (limited to 'miscutils/crontab.c')
-rw-r--r-- | miscutils/crontab.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/miscutils/crontab.c b/miscutils/crontab.c index 6ae1b02..743ac74 100644 --- a/miscutils/crontab.c +++ b/miscutils/crontab.c @@ -126,7 +126,7 @@ int crontab_main(int ac, char **av) if (repFile) { repFd = GetReplaceStream(caller, repFile); if (repFd < 0) - bb_error_msg_and_die("unable to read replacement file"); + bb_error_msg_and_die("cannot read replacement file"); } /* @@ -191,7 +191,7 @@ int crontab_main(int ac, char **av) close(fd); rename(path, pas->pw_name); } else { - bb_error_msg("unable to create %s/%s", CDir, path); + bb_error_msg("cannot create %s/%s", CDir, path); } close(repFd); } @@ -224,7 +224,7 @@ int crontab_main(int ac, char **av) /* loop */ } if (fo == NULL) { - bb_error_msg("unable to append to %s/%s", CDir, CRONUPDATE); + bb_error_msg("cannot append to %s/%s", CDir, CRONUPDATE); } } return 0; |