aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Konovalov <maxim@FreeBSD.org>2002-07-01 13:18:52 +0000
committerMaxim Konovalov <maxim@FreeBSD.org>2002-07-01 13:18:52 +0000
commit21ee796112a4f0acf94f062c66fdcbb48ac7fa81 (patch)
tree306d855dc0f5a47782b126b48ff994856e7540e4
parent27cc91fbf84cc6c1cef81df859125f42292a2b69 (diff)
Notes
-rw-r--r--usr.sbin/newsyslog/newsyslog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/newsyslog/newsyslog.c b/usr.sbin/newsyslog/newsyslog.c
index aa131872c8f30..5f6b0299397d7 100644
--- a/usr.sbin/newsyslog/newsyslog.c
+++ b/usr.sbin/newsyslog/newsyslog.c
@@ -944,7 +944,7 @@ parse8601(char *s, char *errline)
return -1;
}
if ((tsecs = mktime(&tm)) == -1)
- errx(1, "nonexistent time:\n%s", errline);
+ errx(1, "nonexistent time:\n%s", errline);
return tsecs;
}
@@ -1115,6 +1115,6 @@ parseDWM(char *s, char *errline)
s = t;
}
if ((tsecs = mktime(&tm)) == -1)
- errx(1, "nonexistent time:\n%s", errline);
+ errx(1, "nonexistent time:\n%s", errline);
return tsecs;
}