From db67e196ab85944f9312ab28ea7a1cb117b07e44 Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Thu, 9 Oct 1997 15:07:18 +0000 Subject: if user specified wtmp file, use timestamp on final record instead of current system time for "end of run" time; tim@pool1.convey.ru --- usr.sbin/ac/ac.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/usr.sbin/ac/ac.c b/usr.sbin/ac/ac.c index 82fc8e4a6e8..1a57109acbb 100644 --- a/usr.sbin/ac/ac.c +++ b/usr.sbin/ac/ac.c @@ -14,7 +14,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: ac.c,v 1.6 1997/08/30 19:54:45 deraadt Exp $"; +static char rcsid[] = "$Id: ac.c,v 1.7 1997/10/09 15:07:17 deraadt Exp $"; #endif #include @@ -513,7 +513,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.2.3