summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2005-08-25 23:07:04 +0000
committerMark Wielaard <mark@klomp.org>2005-08-25 23:07:04 +0000
commitc9398af824ed3b1c9a28dcf166c611ded92b4b58 (patch)
tree9f14be50b27e4a7244f75a4797589c4a5046fe13 /scripts
parent57c5c17b9f93e4ea54c6b47e17653035b3c82667 (diff)
downloadclasspath-c9398af824ed3b1c9a28dcf166c611ded92b4b58.tar.gz
* timezones.pl (parseRule): Add dayoffset when $time represents
more then a day. * java/util/TimeZone.java (timezones): Regenerate.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/timezones.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/timezones.pl b/scripts/timezones.pl
index 5eebb40bc..142ea4b75 100755
--- a/scripts/timezones.pl
+++ b/scripts/timezones.pl
@@ -155,7 +155,7 @@ sub parseRule($$$) {
$time += 24*3600*1000;
$dayoffset--;
}
- while ($time >= 24*3600*1000) {
+ while ($time > 24*3600*1000) {
$time -= 24*3600*1000;
$dayoffset++;
}