about summary refs log tree commit diff
path: root/timezone
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-12-05 18:53:04 +0000
committerUlrich Drepper <drepper@redhat.com>2001-12-05 18:53:04 +0000
commit3af64d740a25a14fd9450b5d0eafc3c0887a4f40 (patch)
tree7409e141372b1c62f8584e1364304221bb024134 /timezone
parent988cca3323de4335982187ccd784be36c916f5ee (diff)
downloadglibc-3af64d740a25a14fd9450b5d0eafc3c0887a4f40.tar.gz
glibc-3af64d740a25a14fd9450b5d0eafc3c0887a4f40.tar.xz
glibc-3af64d740a25a14fd9450b5d0eafc3c0887a4f40.zip
Fix handling of turnaround times.
Diffstat (limited to 'timezone')
-rw-r--r--timezone/zic.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/timezone/zic.c b/timezone/zic.c
index 8e028ebb92..6fdcfcb66a 100644
--- a/timezone/zic.c
+++ b/timezone/zic.c
@@ -1,6 +1,6 @@
 #ifndef lint
 #ifndef NOID
-static char	elsieid[] = "@(#)zic.c	7.102";
+static char	elsieid[] = "@(#)zic.c	7.104";
 #endif /* !defined NOID */
 #endif /* !defined lint */
 
@@ -1616,16 +1616,16 @@ const int			zonecount;
 	typecnt = 0;
 	charcnt = 0;
 	/*
-	** A guess that may well be corrected later.
-	*/
-	stdoff = 0;
-	/*
 	** Thanks to Earl Chew (earl@dnd.icp.nec.com.au)
 	** for noting the need to unconditionally initialize startttisstd.
 	*/
 	startttisstd = FALSE;
 	startttisgmt = FALSE;
 	for (i = 0; i < zonecount; ++i) {
+		/*
+		** A guess that may well be corrected later.
+		*/
+		stdoff = 0;
 		zp = &zpfirst[i];
 		usestart = i > 0 && (zp - 1)->z_untiltime > min_time;
 		useuntil = i < (zonecount - 1);
@@ -1645,8 +1645,7 @@ const int			zonecount;
 			if (usestart) {
 				addtt(starttime, type);
 				usestart = FALSE;
-			}
-			else if (stdoff != 0)
+			} else if (stdoff != 0)
 				addtt(min_time, type);
 		} else for (year = min_year; year <= max_year; ++year) {
 			if (useuntil && year > zp->z_untilrule.r_hiyear)