* mailbox/mutil.c (mu_parse_imap_date_time): This one is so
obvious that it is embarrasing. In a struct tm { } tv_wday [0,6] Sunday == 0. Change the Array for it to start with "Sun" instead of "Mon".
Showing
2 changed files
with
8 additions
and
1 deletions
1 | 2001-11-05 Alain Magloire | ||
2 | |||
3 | * mailbox/mutil.c (mu_parse_imap_date_time): This one is so | ||
4 | obvious that it is embarrasing. In a struct tm { } | ||
5 | tv_wday [0,6] Sunday == 0. Change the Array for it to | ||
6 | start with "Sun" instead of "Mon". | ||
7 | |||
1 | 2001-11-05 Sergey Poznyakoff | 8 | 2001-11-05 Sergey Poznyakoff |
2 | 9 | ||
3 | * configure.in: check for vsyslog | 10 | * configure.in: check for vsyslog | ... | ... |
... | @@ -109,7 +109,7 @@ static const char *months[] = | ... | @@ -109,7 +109,7 @@ static const char *months[] = |
109 | 109 | ||
110 | static const char *wdays[] = | 110 | static const char *wdays[] = |
111 | { | 111 | { |
112 | "Mon", "Teu", "Wed", "Thr", "Fri", "Sat", "Sun", NULL | 112 | "Sun", "Mon", "Teu", "Wed", "Thr", "Fri", "Sat", NULL |
113 | }; | 113 | }; |
114 | 114 | ||
115 | int | 115 | int | ... | ... |
-
Please register or sign in to post a comment