From owner-svn-src-all@FreeBSD.ORG Thu May 10 20:03:35 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 73C8B106564A; Thu, 10 May 2012 20:03:35 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5EA3C8FC12; Thu, 10 May 2012 20:03:35 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4AK3ZG9049615; Thu, 10 May 2012 20:03:35 GMT (envelope-from dim@svn.freebsd.org) Received: (from dim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4AK3ZZs049613; Thu, 10 May 2012 20:03:35 GMT (envelope-from dim@svn.freebsd.org) Message-Id: <201205102003.q4AK3ZZs049613@svn.freebsd.org> From: Dimitry Andric Date: Thu, 10 May 2012 20:03:35 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r235239 - head/lib/libc/locale X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 May 2012 20:03:35 -0000 Author: dim Date: Thu May 10 20:03:34 2012 New Revision: 235239 URL: http://svn.freebsd.org/changeset/base/235239 Log: Fix copy/paste error in lib/libc/locale/toupper.c. Submitted by: Kohji Okuno Modified: head/lib/libc/locale/toupper.c Modified: head/lib/libc/locale/toupper.c ============================================================================== --- head/lib/libc/locale/toupper.c Thu May 10 18:29:40 2012 (r235238) +++ head/lib/libc/locale/toupper.c Thu May 10 20:03:34 2012 (r235239) @@ -51,7 +51,7 @@ ___toupper_l(c, l) { size_t lim; FIX_LOCALE(l); - _RuneRange *rr = &XLOCALE_CTYPE(l)->runes->__maplower_ext; + _RuneRange *rr = &XLOCALE_CTYPE(l)->runes->__mapupper_ext; _RuneEntry *base, *re; if (c < 0 || c == EOF)