From owner-cvs-src-old@FreeBSD.ORG Tue Oct 19 21:05:37 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 57C9F106566B for ; Tue, 19 Oct 2010 21:05:37 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 45BD58FC14 for ; Tue, 19 Oct 2010 21:05:37 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9JL5bri039018 for ; Tue, 19 Oct 2010 21:05:37 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9JL5bPF039017 for cvs-src-old@freebsd.org; Tue, 19 Oct 2010 21:05:37 GMT (envelope-from edwin@repoman.freebsd.org) Message-Id: <201010192105.o9JL5bPF039017@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to edwin@repoman.freebsd.org using -f From: Edwin Groothuis Date: Tue, 19 Oct 2010 21:05:22 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/lib/libc/stdtime strptime.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2010 21:05:37 -0000 edwin 2010-10-19 21:05:22 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) lib/libc/stdtime strptime.c Log: SVN rev 214080 on 2010-10-19 21:05:22Z by edwin MFC of r207830 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 Revision Changes Path 1.35.20.2 +8 -0 src/lib/libc/stdtime/strptime.c