diff options
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 6ae1b020c..743ac74ae 100644 --- a/miscutils/crontab.c +++ b/miscutils/crontab.c | |||
@@ -126,7 +126,7 @@ int crontab_main(int ac, char **av) | |||
126 | if (repFile) { | 126 | if (repFile) { |
127 | repFd = GetReplaceStream(caller, repFile); | 127 | repFd = GetReplaceStream(caller, repFile); |
128 | if (repFd < 0) | 128 | if (repFd < 0) |
129 | bb_error_msg_and_die("unable to read replacement file"); | 129 | bb_error_msg_and_die("cannot read replacement file"); |
130 | } | 130 | } |
131 | 131 | ||
132 | /* | 132 | /* |
@@ -191,7 +191,7 @@ int crontab_main(int ac, char **av) | |||
191 | close(fd); | 191 | close(fd); |
192 | rename(path, pas->pw_name); | 192 | rename(path, pas->pw_name); |
193 | } else { | 193 | } else { |
194 | bb_error_msg("unable to create %s/%s", CDir, path); | 194 | bb_error_msg("cannot create %s/%s", CDir, path); |
195 | } | 195 | } |
196 | close(repFd); | 196 | close(repFd); |
197 | } | 197 | } |
@@ -224,7 +224,7 @@ int crontab_main(int ac, char **av) | |||
224 | /* loop */ | 224 | /* loop */ |
225 | } | 225 | } |
226 | if (fo == NULL) { | 226 | if (fo == NULL) { |
227 | bb_error_msg("unable to append to %s/%s", CDir, CRONUPDATE); | 227 | bb_error_msg("cannot append to %s/%s", CDir, CRONUPDATE); |
228 | } | 228 | } |
229 | } | 229 | } |
230 | return 0; | 230 | return 0; |