diff options
author | Garance A Drosehn <gad@FreeBSD.org> | 2003-09-09 05:26:27 +0000 |
---|---|---|
committer | Garance A Drosehn <gad@FreeBSD.org> | 2003-09-09 05:26:27 +0000 |
commit | 1f566014a38769c5a71a7eec32f6747e68b33f93 (patch) | |
tree | e29cb966e1ed53a35a1ecef67d11c139e0a14a1e | |
parent | 9b8311cef61b183575acbc6d9ae3989a8b98bd46 (diff) | |
download | src-1f566014a38769c5a71a7eec32f6747e68b33f93.tar.gz src-1f566014a38769c5a71a7eec32f6747e68b33f93.zip |
Correct the comment about which timezone-change loses an hour...
MFC after: 23 days
Notes
Notes:
svn path=/head/; revision=119905
-rw-r--r-- | usr.sbin/newsyslog/newsyslog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/newsyslog/newsyslog.c b/usr.sbin/newsyslog/newsyslog.c index f38bac2000a0..13a828701d34 100644 --- a/usr.sbin/newsyslog/newsyslog.c +++ b/usr.sbin/newsyslog/newsyslog.c @@ -1861,7 +1861,7 @@ parse8601(const char *s) tsecs = mktime(&tm); /* * Check for invalid times, including things like the missing - * hour when switching from "daylight savings" to "standard". + * hour when switching from "standard time" to "daylight saving". */ if (tsecs == (time_t)-1) tsecs = (time_t)-2; @@ -1984,7 +1984,7 @@ parseDWM(char *s) tsecs = mktime(&tm); /* * Check for invalid times, including things like the missing - * hour when switching from "daylight savings" to "standard". + * hour when switching from "standard time" to "daylight saving". */ if (tsecs == (time_t)-1) tsecs = (time_t)-2; |