summaryrefslogtreecommitdiffstats
path: root/usr.bin/who/who.c
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2002-11-15 22:42:00 +0000
committerpeter <peter@FreeBSD.org>2002-11-15 22:42:00 +0000
commit97526c738c4cd08d52cb022605460e34b2f0b80f (patch)
tree414badc6420598c8e62302e330f16ee827afd3eb /usr.bin/who/who.c
parentc841be9bcbd974616aaa3b10b66a62d927ea1f88 (diff)
downloadFreeBSD-src-97526c738c4cd08d52cb022605460e34b2f0b80f.zip
FreeBSD-src-97526c738c4cd08d52cb022605460e34b2f0b80f.tar.gz
utmp.ut_time and lastlog.ll_time are explicitly int32_t rather than
time_t. Deal with the possibility that time_t != int32_t. This boils down to this sort of thing: - time(&ut.ut_time); + ut.ut_time = time(NULL); and similar for ctime(3) etc. I've kept it minimal for the stuff that may need to be portable (or 3rd party code), but used Matt's time32 stuff for cases where that isn't as much of a concern. Approved by: re (jhb)
Diffstat (limited to 'usr.bin/who/who.c')
-rw-r--r--usr.bin/who/who.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.bin/who/who.c b/usr.bin/who/who.c
index 000cc21..23c7608 100644
--- a/usr.bin/who/who.c
+++ b/usr.bin/who/who.c
@@ -42,6 +42,7 @@ __FBSDID("$FreeBSD$");
#include <stdlib.h>
#include <string.h>
#include <time.h>
+#include <timeconv.h>
#include <unistd.h>
#include <utmp.h>
@@ -160,7 +161,7 @@ row(struct utmp *ut)
{
char buf[80], tty[sizeof(_PATH_DEV) + UT_LINESIZE];
struct stat sb;
- time_t idle;
+ time_t idle, t;
static int d_first = -1;
struct tm *tm;
char state;
@@ -184,7 +185,8 @@ row(struct utmp *ut)
if (Tflag)
printf("%c ", state);
printf("%-*.*s ", UT_LINESIZE, UT_LINESIZE, ut->ut_line);
- tm = localtime(&ut->ut_time);
+ t = _time32_to_time(ut->ut_time);
+ tm = localtime(&t);
strftime(buf, sizeof(buf), d_first ? "%e %b %R" : "%b %e %R", tm);
printf("%-*s ", 12, buf);
if (uflag) {
@@ -265,7 +267,7 @@ whoami(FILE *fp)
name = "?";
strncpy(ut.ut_name, name, UT_NAMESIZE);
strncpy(ut.ut_line, tty, UT_LINESIZE);
- time(&ut.ut_time);
+ ut.ut_time = _time_to_time32(time(NULL));
row(&ut);
}
OpenPOWER on IntegriCloud