# HG changeset patch # User Paul Eggert # Date 1112644387 0 # Node ID 3293578b2f71cbb8105a866f17e1510c186a0434 # Parent 8cecd239818267059e704e9e9afc3feb1f74f9bc getdate.y patch for parsing empty string near DST boundaries. diff --git a/lib/ChangeLog b/lib/ChangeLog --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,17 @@ +2005-04-04 Paul Eggert + + * getdate.y (parser_control): rels_seen is now a boolean, not a + count, since there's no maximum. All uses changed. + Add member dsts_seen. + (local_zone): Accumulate dsts_seen rather than relying on tm_isdst + not being INT_MAX. + (get_date): Initialize dsts_seen, and check that it doesn't go over 1. + Use pc_rels_seen to decide whther a date is absolute. + + * getdate.y (number): Don't overwrite year. + (get_date): Initialize pc.year.digits to 0, not 4, to enable above + check. + 2005-04-02 Simon Josefsson * getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny