Module Name: src
Committed By: apb
Date: Wed Oct 8 14:32:29 UTC 2014
Modified Files:
src/lib/libutil: parsedate.y
Log Message:
A time like HH:MM:SS.sss says nothing about whether DST is on or off.
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/lib/libutil/parsedate.y
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libutil/parsedate.y
diff -u src/lib/libutil/parsedate.y:1.17 src/lib/libutil/parsedate.y:1.18
--- src/lib/libutil/parsedate.y:1.17 Tue Oct 7 22:27:14 2014
+++ src/lib/libutil/parsedate.y Wed Oct 8 14:32:29 2014
@@ -14,7 +14,7 @@
#include <sys/cdefs.h>
#ifdef __RCSID
-__RCSID("$NetBSD: parsedate.y,v 1.17 2014/10/07 22:27:14 apb Exp $");
+__RCSID("$NetBSD: parsedate.y,v 1.18 2014/10/08 14:32:29 apb Exp $");
#endif
#include <stdio.h>
@@ -223,9 +223,7 @@ time : tUNUMBER tMERIDIAN {
param->yyMinutes = $3;
param->yySeconds = $5;
param->yyMeridian = MER24;
- param->yyDSTmode = DSToff;
/* XXX: Do nothing with millis */
-/* param->yyTimezone = ($7 % 100 + ($7 / 100) * 60); */
}
;