Skip to content

Commit 6709c6d

Browse files
committed
A message's sent or received date with a specified TZ but without any
seconds value was using the local date seconds value instead of 00.
1 parent 43c9a21 commit 6709c6d

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

Changelog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ Version Changes for Hypermail
44
HYPERMAIL VERSION 2.4.0:
55
============================
66

7+
2019-12-20 Jose Kahan
8+
* src/getdate.y
9+
A message's sent or received date with a specified TZ but without any
10+
seconds value was using the local date seconds value instead of 00.
11+
712
2019-12-19 Jose Kahan
813
* src/parse.c
914
parsemail(): a Content-Transfer-Encoding header with a missing value

src/getdate.y

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,7 @@ time : tUNUMBER tMERIDIAN {
233233
| tUNUMBER ':' tUNUMBER tSNUMBER {
234234
yyHour = $1;
235235
yyMinutes = $3;
236+
yySeconds = 0;
236237
yyMeridian = MER24;
237238
yyHaveZone++;
238239
yyTimezone = ($4 < 0

0 commit comments

Comments
 (0)