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
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
......