diff options
author | Mark Wielaard <mark@klomp.org> | 2005-08-25 23:07:04 +0000 |
---|---|---|
committer | Mark Wielaard <mark@klomp.org> | 2005-08-25 23:07:04 +0000 |
commit | c9398af824ed3b1c9a28dcf166c611ded92b4b58 (patch) | |
tree | 9f14be50b27e4a7244f75a4797589c4a5046fe13 /scripts | |
parent | 57c5c17b9f93e4ea54c6b47e17653035b3c82667 (diff) | |
download | classpath-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-x | scripts/timezones.pl | 2 |
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++; } |