svn commit: r207830 - head/lib/libc/stdtime
Edwin Groothuis
edwin at FreeBSD.org
Sun May 9 22:01:36 UTC 2010
Author: edwin
Date: Sun May 9 22:01:35 2010
New Revision: 207830
URL: http://svn.freebsd.org/changeset/base/207830
Log:
strptime(3) confused July with June with the fr_FR locale.
When parsing the month "juillet" (abbr "jul"), %B recognized it as
"juin" (abbr "jui") because the full name of the month names is
checked at the same time as the abbrevation.
The new behaviour checks the full names first before checking the
abbrevation names.
PR: kern/141939
Submitted by: Denis Chatelain <denis at tikuts.com>
MFC after: 1 week
Modified:
head/lib/libc/stdtime/strptime.c
Modified: head/lib/libc/stdtime/strptime.c
==============================================================================
--- head/lib/libc/stdtime/strptime.c Sun May 9 21:34:05 2010 (r207829)
+++ head/lib/libc/stdtime/strptime.c Sun May 9 22:01:35 2010 (r207830)
@@ -408,6 +408,14 @@ label:
if (strncasecmp(buf, tptr->month[i],
len) == 0)
break;
+ }
+ }
+ /*
+ * Try the abbreviated month name if the full name
+ * wasn't found and Oalternative was not requested.
+ */
+ if (i == asizeof(tptr->month) && !Oalternative) {
+ for (i = 0; i < asizeof(tptr->month); i++) {
len = strlen(tptr->mon[i]);
if (strncasecmp(buf, tptr->mon[i],
len) == 0)
More information about the svn-src-head
mailing list