Commit a3903307 a39033073e8629c2cc3eebd63661c3a5713d5672 by Alain Magloire

* 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".
1 parent ad75d579
2001-11-05 Alain Magloire
* 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".
2001-11-05 Sergey Poznyakoff
* configure.in: check for vsyslog
......
......@@ -109,7 +109,7 @@ static const char *months[] =
static const char *wdays[] =
{
"Mon", "Teu", "Wed", "Thr", "Fri", "Sat", "Sun", NULL
"Sun", "Mon", "Teu", "Wed", "Thr", "Fri", "Sat", NULL
};
int
......