diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-06 20:46:32 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-06 20:46:32 +0000 |
commit | e41c9697da705461addf8e19194362b40ed1da9f (patch) | |
tree | 2f79ec8ec1be4ec655e839b4f7ea3ac6e4153104 | |
parent | bf5089acd3e9f0db705a920cd065072473a01d2d (diff) |
back out unwanted private change
-rw-r--r-- | usr.bin/newsyslog/newsyslog.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/newsyslog/newsyslog.c b/usr.bin/newsyslog/newsyslog.c index ea102d1b22c..5589a709b06 100644 --- a/usr.bin/newsyslog/newsyslog.c +++ b/usr.bin/newsyslog/newsyslog.c @@ -1,4 +1,4 @@ -/* $OpenBSD: newsyslog.c,v 1.22 1999/11/06 20:45:26 millert Exp $ */ +/* $OpenBSD: newsyslog.c,v 1.23 1999/11/06 20:46:31 millert Exp $ */ /* * Copyright (c) 1997, Jason Downs. All rights reserved. @@ -61,7 +61,7 @@ provided "as is" without express or implied warranty. */ #ifndef lint -static char rcsid[] = "$OpenBSD: newsyslog.c,v 1.22 1999/11/06 20:45:26 millert Exp $"; +static char rcsid[] = "$OpenBSD: newsyslog.c,v 1.23 1999/11/06 20:46:31 millert Exp $"; #endif /* not lint */ #ifndef CONF @@ -198,7 +198,7 @@ void do_entry(ent) (ent->flags & CE_COMPACT) ? "Z" : ""); size = sizefile(ent->log); if (age_old_log(ent->log, &modtime) == -1) - modtime = -1; + modtime = 0; if (size < 0) { if (verbose) printf("does not exist.\n"); |