Commit 9ceac518 9ceac518e250a0948927ad779336dc1123d9e724 by Sergey Poznyakoff

(const char *days): Bugfix. "Sun" must be the first entry in the array.

1 parent 2b726c82
......@@ -1356,13 +1356,13 @@ parse822_day (const char **p, const char *e, int *day)
/* day = "Mon" / "Tue" / "Wed" / "Thu" / "Fri" / "Sat" / "Sun" */
const char *days[] = {
"Sun",
"Mon",
"Tue",
"Wed",
"Thu",
"Fri",
"Sat",
"Sun",
NULL
};
......