diff options
author | ache <ache@FreeBSD.org> | 1996-08-12 11:39:24 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1996-08-12 11:39:24 +0000 |
commit | 47124e7ef453009ed52092a0e2f4568a759db2dd (patch) | |
tree | d2a8966f17dcc8f77376db179056e0a734f24750 /usr.bin/find/ls.c | |
parent | e37075011a9565ba98e9e8ad503badbf970eddf3 (diff) | |
download | FreeBSD-src-47124e7ef453009ed52092a0e2f4568a759db2dd.zip FreeBSD-src-47124e7ef453009ed52092a0e2f4568a759db2dd.tar.gz |
Localize it
Diffstat (limited to 'usr.bin/find/ls.c')
-rw-r--r-- | usr.bin/find/ls.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/find/ls.c b/usr.bin/find/ls.c index 929ef79..29c068d 100644 --- a/usr.bin/find/ls.c +++ b/usr.bin/find/ls.c @@ -82,10 +82,9 @@ printtime(ftime) time_t ftime; { int i; - char *longstring, *ctime(); - time_t time(); + char longstring[80]; - longstring = ctime((long *)&ftime); + strftime(longstring, sizeof(longstring), "%c", localtime(&ftime)); for (i = 4; i < 11; ++i) (void)putchar(longstring[i]); |