http://bugs.winehq.org/show_bug.cgi?id=28828
Juan Lang juan_lang@yahoo.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1
--- Comment #2 from Juan Lang juan_lang@yahoo.com 2011-10-21 15:44:47 CDT --- Confirming by reading the code (which I wrote.) Here's the relevant comment:
/* FIXME: only accepts dates in RFC 1123 format and asctime() format, * which may not be the only formats actually seen in the wild. * http://www.hackcraft.net/web/datetime/ suggests at least RFC 850 dates * should be accepted as well.
According to that URL, an RFC 850 date format is: rfc850-date = weekday "," SP date2 SP time SP "GMT"
where weekday is one of "Monday", "Tuesday", etc. But what we see is "Mon" instead. Looks like we'll have to be even more permissive.