summaryrefslogtreecommitdiffstats
path: root/usr.bin/last
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1996-06-17 16:44:16 +0000
committerache <ache@FreeBSD.org>1996-06-17 16:44:16 +0000
commit8accda5bc327454e7946565276e3c52b82a4877f (patch)
tree847876a5f3b11e2c8a0ad9232164758447860dec /usr.bin/last
parente96f6124d1c2074394badab4591410dfcf7e2726 (diff)
downloadFreeBSD-src-8accda5bc327454e7946565276e3c52b82a4877f.zip
FreeBSD-src-8accda5bc327454e7946565276e3c52b82a4877f.tar.gz
Localize time
Diffstat (limited to 'usr.bin/last')
-rw-r--r--usr.bin/last/last.c41
1 files changed, 27 insertions, 14 deletions
diff --git a/usr.bin/last/last.c b/usr.bin/last/last.c
index ba7214f..89dcef8 100644
--- a/usr.bin/last/last.c
+++ b/usr.bin/last/last.c
@@ -46,6 +46,7 @@ static char sccsid[] = "@(#)last.c 8.2 (Berkeley) 4/2/94";
#include <err.h>
#include <fcntl.h>
+#include <locale.h>
#include <paths.h>
#include <signal.h>
#include <stdio.h>
@@ -100,6 +101,8 @@ main(argc, argv)
int ch;
char *p;
+ (void) setlocale(LC_TIME, "");
+
maxrec = -1;
while ((ch = getopt(argc, argv, "0123456789f:h:t:")) != EOF)
switch (ch) {
@@ -163,7 +166,9 @@ wtmp()
struct stat stb; /* stat of file for size */
long bl, delta; /* time difference */
int bytes, wfd;
- char *ct, *crmsg;
+ char *crmsg;
+ char ct[80];
+ struct tm *tm;
LIST_INIT(&ttylist);
@@ -194,7 +199,8 @@ wtmp()
crmsg = strncmp(bp->ut_name, "shutdown",
UT_NAMESIZE) ? "crash" : "shutdown";
if (want(bp)) {
- ct = ctime(&bp->ut_time);
+ tm = localtime(&bp->ut_time);
+ (void) strftime(ct, sizeof(ct), "%c", tm);
printf("%-*.*s %-*.*s %-*.*s %10.10s %5.5s \n",
UT_NAMESIZE, UT_NAMESIZE,
bp->ut_name, UT_LINESIZE,
@@ -213,7 +219,8 @@ wtmp()
if ((bp->ut_line[0] == '{' || bp->ut_line[0] == '|')
&& !bp->ut_line[1]) {
if (want(bp)) {
- ct = ctime(&bp->ut_time);
+ tm = localtime(&bp->ut_time);
+ (void) strftime(ct, sizeof(ct), "%c", tm);
printf("%-*.*s %-*.*s %-*.*s %10.10s %5.5s \n",
UT_NAMESIZE, UT_NAMESIZE, bp->ut_name,
UT_LINESIZE, UT_LINESIZE, bp->ut_line,
@@ -250,7 +257,8 @@ wtmp()
bp->ut_line[3] = '\0';
else if (!strncmp(bp->ut_line, "uucp", sizeof("uucp") - 1))
bp->ut_line[4] = '\0';
- ct = ctime(&bp->ut_time);
+ tm = localtime(&bp->ut_time);
+ (void) strftime(ct, sizeof(ct), "%c", tm);
printf("%-*.*s %-*.*s %-*.*s %10.10s %5.5s ",
UT_NAMESIZE, UT_NAMESIZE, bp->ut_name,
UT_LINESIZE, UT_LINESIZE, bp->ut_line,
@@ -263,17 +271,19 @@ wtmp()
tt->logout = -tt->logout;
printf("- %s", crmsg);
}
- else
- printf("- %5.5s",
- ctime(&tt->logout)+11);
+ else {
+ tm = localtime(&tt->logout);
+ (void) strftime(ct, sizeof(ct), "%c", tm);
+ printf("- %5.5s", ct + 11);
+ }
delta = tt->logout - bp->ut_time;
+ tm = gmtime(&delta);
+ (void) strftime(ct, sizeof(ct), "%c", tm);
if (delta < 86400)
- printf(" (%5.5s)\n",
- asctime(gmtime(&delta))+11);
+ printf(" (%5.5s)\n", ct + 11);
else
printf(" (%ld+%5.5s)\n",
- delta / 86400,
- asctime(gmtime(&delta))+11);
+ delta / 86400, ct + 11);
}
LIST_REMOVE(tt, list);
free(tt);
@@ -285,7 +295,8 @@ wtmp()
}
}
}
- ct = ctime(&buf[0].ut_time);
+ tm = localtime(&buf[0].ut_time);
+ (void) strftime(ct, sizeof(ct), "%c", tm);
printf("\nwtmp begins %10.10s %5.5s \n", ct, ct + 11);
}
@@ -404,9 +415,11 @@ void
onintr(signo)
int signo;
{
- char *ct;
+ char ct[80];
+ struct tm *tm;
- ct = ctime(&buf[0].ut_time);
+ tm = localtime(&buf[0].ut_time);
+ (void) strftime(ct, sizeof(ct), "%c", tm);
printf("\ninterrupted %10.10s %5.5s \n", ct, ct + 11);
if (signo == SIGINT)
exit(1);
OpenPOWER on IntegriCloud