Do not rely on the underlying type of time_t in date(1) and touch(1)
Use LLONG_MAX unconditionally. In practice this only causes trouble with systems that are not 2038 ready.
This commit is contained in:
parent
d6b3890af6
commit
8f5d77d8c7
2
date.c
2
date.c
|
@ -26,7 +26,7 @@ main(int argc, char *argv[])
|
||||||
t = time(NULL);
|
t = time(NULL);
|
||||||
ARGBEGIN {
|
ARGBEGIN {
|
||||||
case 'd':
|
case 'd':
|
||||||
t = estrtonum(EARGF(usage()), 0, MIN(LLONG_MAX, (time_t)-1));
|
t = estrtonum(EARGF(usage()), 0, LLONG_MAX);
|
||||||
break;
|
break;
|
||||||
case 'u':
|
case 'u':
|
||||||
tztime = gmtime;
|
tztime = gmtime;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user