diff options
author | Matt Kraai | 2000-07-12 17:02:35 +0000 |
---|---|---|
committer | Matt Kraai | 2000-07-12 17:02:35 +0000 |
commit | be84cd4ef66f8956eb4c7ff0542fd1ba823a70e7 (patch) | |
tree | 088bc5b6e06d693ad8ca3eba078c0f3a8e302a24 /coreutils/date.c | |
parent | e58771e73c0d8589a458ede4088f5ba70eff917b (diff) | |
download | busybox-be84cd4ef66f8956eb4c7ff0542fd1ba823a70e7.zip busybox-be84cd4ef66f8956eb4c7ff0542fd1ba823a70e7.tar.gz |
Always report the applet name when doing error reporting.
Diffstat (limited to 'coreutils/date.c')
-rw-r--r-- | coreutils/date.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/coreutils/date.c b/coreutils/date.c index 9e8e3f3..bc6d131 100644 --- a/coreutils/date.c +++ b/coreutils/date.c @@ -66,7 +66,7 @@ struct tm *date_conv_time(struct tm *tm_time, const char *t_string) &(tm_time->tm_min), &(tm_time->tm_year)); if (nr < 4 || nr > 5) { - fatalError(invalid_date, "date", t_string); + fatalError(invalid_date, t_string); } /* correct for century - minor Y2K problem here? */ @@ -150,7 +150,7 @@ struct tm *date_conv_ftime(struct tm *tm_time, const char *t_string) } - fatalError(invalid_date, "date", t_string); + fatalError(invalid_date, t_string); } @@ -186,7 +186,7 @@ int date_main(int argc, char **argv) case 'u': utc = 1; if (putenv("TZ=UTC0") != 0) - fatalError(memory_exhausted, "date"); + fatalError(memory_exhausted); break; case 'd': use_arg = 1; @@ -236,12 +236,12 @@ int date_main(int argc, char **argv) /* Correct any day of week and day of year etc fields */ tm = mktime(&tm_time); if (tm < 0) - fatalError(invalid_date, "date", date_str); + fatalError(invalid_date, date_str); /* if setting time, set it */ if (set_time) { if (stime(&tm) < 0) { - fatalError("date: can't set date.\n"); + fatalError("can't set date.\n"); } } } |