From 73c3aa98abf0b6a61d9695f2e3ff459be44e2c3b Mon Sep 17 00:00:00 2001 From: steve Date: Mon, 25 May 1998 05:21:29 +0000 Subject: Give correct times with old wtmp files. PR: 4732 Submitted by: Andrew Timonin --- usr.sbin/ac/ac.c | 5 +++-- 1 file changed, 3 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 f59cf37..2e8d0e8 100644 --- a/usr.sbin/ac/ac.c +++ b/usr.sbin/ac/ac.c @@ -15,7 +15,7 @@ #ifndef lint static const char rcsid[] = - "$Id$"; + "$Id: ac.c,v 1.8 1997/09/01 06:11:40 charnier Exp $"; #endif /* not lint */ #include @@ -517,7 +517,8 @@ ac(fp) } } (void)fclose(fp); - usr.ut_time = time((time_t *)0); + if (!(Flags & AC_W)) + usr.ut_time = time((time_t *)0); (void)strcpy(usr.ut_line, "~"); if (Flags & AC_D) { -- cgit v1.1