diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-10-09 15:07:18 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-10-09 15:07:18 +0000 |
commit | db67e196ab85944f9312ab28ea7a1cb117b07e44 (patch) | |
tree | 8d4230c4f5c8cabb226ae6b4ad6710e6ddb42e8e /usr.sbin/ac | |
parent | a1b31f13541731cdb985c421c6261af95562c543 (diff) |
if user specified wtmp file, use timestamp on final record instead of
current system time for "end of run" time; tim@pool1.convey.ru
Diffstat (limited to 'usr.sbin/ac')
-rw-r--r-- | usr.sbin/ac/ac.c | 5 |
1 files 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 <sys/types.h> @@ -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) { |