diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-03-24 00:54:46 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-03-24 00:54:46 +0000 |
commit | 1ad302ac903695ef4ba748d3880222c05eeaafef (patch) | |
tree | a03bebb080253f4a20f8d5335285a5e717106d36 /coreutils/date.c | |
parent | e454fb68a3165ca5cf42c290b4b9dc92dbf9a235 (diff) |
The new tar for busybox is now done, and works just fine
for extracting files. Creation of tarballs is next...
-Erik
Diffstat (limited to 'coreutils/date.c')
-rw-r--r-- | coreutils/date.c | 23 |
1 files changed, 7 insertions, 16 deletions
diff --git a/coreutils/date.c b/coreutils/date.c index 199a894c0..25ce05d2d 100644 --- a/coreutils/date.c +++ b/coreutils/date.c @@ -64,8 +64,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) { - fprintf(stderr, invalid_date, "date", t_string); - exit(FALSE); + fatalError(invalid_date, "date", t_string); } /* correct for century - minor Y2K problem here? */ @@ -149,10 +148,7 @@ struct tm *date_conv_ftime(struct tm *tm_time, const char *t_string) } - fprintf(stderr, invalid_date, "date", t_string); - - exit(FALSE); - + fatalError(invalid_date, "date", t_string); } @@ -187,10 +183,8 @@ int date_main(int argc, char **argv) break; case 'u': utc = 1; - if (putenv("TZ=UTC0") != 0) { - fprintf(stderr, memory_exhausted, "date"); - exit(FALSE); - } + if (putenv("TZ=UTC0") != 0) + fatalError(memory_exhausted, "date"); /* Look ma, no break. Don't fix it either. */ case 'd': use_arg = 1; @@ -239,16 +233,13 @@ 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) { - fprintf(stderr, invalid_date, "date", date_str); - exit(FALSE); - } + if (tm < 0) + fatalError(invalid_date, "date", date_str); /* if setting time, set it */ if (set_time) { if (stime(&tm) < 0) { - fprintf(stderr, "date: can't set date.\n"); - exit(FALSE); + fatalError("date: can't set date.\n"); } } } |