From: Glenn L McGrath Date: Tue, 17 Feb 2004 07:58:04 +0000 (-0000) Subject: Woops, im getting ahead of myself, we dont have the -r (refernece) X-Git-Tag: 1_00_pre8~42 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c2266bd51990883ff6f7de4a4ca22a4bef2050c9;p=platform%2Fupstream%2Fbusybox.git Woops, im getting ahead of myself, we dont have the -r (refernece) option yet --- diff --git a/coreutils/date.c b/coreutils/date.c index 46d2e10..1aa3e22 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 {