diff options
| author | Steve Price <steve@FreeBSD.org> | 1998-05-25 05:21:29 +0000 |
|---|---|---|
| committer | Steve Price <steve@FreeBSD.org> | 1998-05-25 05:21:29 +0000 |
| commit | 2a30154f0523eea500eb2ae50fde1c69242b5175 (patch) | |
| tree | 7fb0b9423606acec58efba93d6147e1aa4797b70 | |
| parent | ad863cac06b4376b11d869fb252daa1a83f3a722 (diff) | |
Notes
| -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 f59cf3762fe21..2e8d0e8dc6e76 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 <sys/types.h> @@ -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) { |
