From c2266bd51990883ff6f7de4a4ca22a4bef2050c9 Mon Sep 17 00:00:00 2001 From: Glenn L McGrath Date: Tue, 17 Feb 2004 07:58:04 +0000 Subject: Woops, im getting ahead of myself, we dont have the -r (refernece) option yet --- coreutils/date.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'coreutils/date.c') diff --git a/coreutils/date.c b/coreutils/date.c index 46d2e1074..1aa3e22d2 100644 --- a/coreutils/date.c +++ b/coreutils/date.c @@ -118,7 +118,9 @@ static struct tm *date_conv_ftime(struct tm *tm_time, const char *t_string) #define DATE_OPT_SET 0x02 #define DATE_OPT_UTC 0x04 #define DATE_OPT_DATE 0x08 -#define DATE_OPT_REFERENCE 0x10 +#ifdef CONFIG_FEATURE_DATE_ISOFMT +# define DATE_OPT_TIMESPEC 0x10 +#endif int date_main(int argc, char **argv) { @@ -156,7 +158,7 @@ int date_main(int argc, char **argv) if(opt & 0x80000000UL) bb_show_usage(); #ifdef CONFIG_FEATURE_DATE_ISOFMT - if(opt & DATE_OPT_REFERENCE) { + if(opt & DATE_OPT_TIMESPEC) { if (!isofmt_arg) { ifmt = 1; } else { -- cgit v1.2.3