From 1b3d4db687e9d0cc8323490e7209c69b93c1e273 Mon Sep 17 00:00:00 2001 From: dillon Date: Mon, 29 Oct 2001 00:36:01 +0000 Subject: localtime() was being called with an int-pointer due to recent utmp fixes. --- usr.sbin/ac/ac.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'usr.sbin/ac/ac.c') diff --git a/usr.sbin/ac/ac.c b/usr.sbin/ac/ac.c index b82a7e7..1543568 100644 --- a/usr.sbin/ac/ac.c +++ b/usr.sbin/ac/ac.c @@ -473,7 +473,8 @@ ac(fp) if (!FirstTime) FirstTime = usr.ut_time; if (Flags & AC_D) { - ltm = localtime(&usr.ut_time); + time_t t = int_to_time(usr.ut_time); + ltm = localtime(&t); if (day >= 0 && day != ltm->tm_yday) { day = ltm->tm_yday; /* @@ -524,7 +525,8 @@ ac(fp) (void)strcpy(usr.ut_line, "~"); if (Flags & AC_D) { - ltm = localtime(&usr.ut_time); + time_t t = int_to_time(usr.ut_time); + ltm = localtime(&t); if (day >= 0 && day != ltm->tm_yday) { /* * print yesterday's total -- cgit v1.1