From 1ad302ac903695ef4ba748d3880222c05eeaafef Mon Sep 17 00:00:00 2001 From: Erik Andersen Date: Fri, 24 Mar 2000 00:54:46 +0000 Subject: The new tar for busybox is now done, and works just fine for extracting files. Creation of tarballs is next... -Erik --- coreutils/date.c | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) (limited to 'coreutils/date.c') 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"); } } } -- cgit v1.2.3-55-g6feb