Source-Changes-HG archive

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

[src/netbsd-7]: src/lib/libutil Pull up following revision(s) (requested by a...



details:   https://anonhg.NetBSD.org/src/rev/86222fc38416
branches:  netbsd-7
changeset: 798415:86222fc38416
user:      snj <snj%NetBSD.org@localhost>
date:      Sat Oct 11 16:47:48 2014 +0000

description:
Pull up following revision(s) (requested by apb in ticket #135):
        lib/libutil/parsedate.y: revision 1.18
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 74c2ad33e3af -r 86222fc38416 lib/libutil/parsedate.y
--- a/lib/libutil/parsedate.y   Sat Oct 11 16:47:00 2014 +0000
+++ b/lib/libutil/parsedate.y   Sat Oct 11 16:47:48 2014 +0000
@@ -14,7 +14,7 @@
 
 #include <sys/cdefs.h>
 #ifdef __RCSID
-__RCSID("$NetBSD: parsedate.y,v 1.16.6.1 2014/10/11 16:44:31 snj Exp $");
+__RCSID("$NetBSD: parsedate.y,v 1.16.6.2 2014/10/11 16:47:48 snj 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