Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libutil A time like HH:MM:SS.sss says nothing about whet...



details:   https://anonhg.NetBSD.org/src/rev/b5d3beaa9bd0
branches:  trunk
changeset: 332770:b5d3beaa9bd0
user:      apb <apb%NetBSD.org@localhost>
date:      Wed Oct 08 14:32:29 2014 +0000

description:
A time like HH:MM:SS.sss says nothing about whether DST is on or off.

diffstat:

 lib/libutil/parsedate.y |  4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diffs (22 lines):

diff -r d1c518881bd1 -r b5d3beaa9bd0 lib/libutil/parsedate.y
--- a/lib/libutil/parsedate.y   Wed Oct 08 13:26:47 2014 +0000
+++ b/lib/libutil/parsedate.y   Wed Oct 08 14:32:29 2014 +0000
@@ -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 @@
            param->yyMinutes = $3;
            param->yySeconds = $5;
            param->yyMeridian = MER24;
-           param->yyDSTmode = DSToff;
 /* XXX: Do nothing with millis */
-/*         param->yyTimezone = ($7 % 100 + ($7 / 100) * 60); */
        }
        ;
 



Home | Main Index | Thread Index | Old Index