Date: Thu, 10 May 2012 20:03:35 +0000 (UTC) From: Dimitry Andric <dim@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r235239 - head/lib/libc/locale Message-ID: <201205102003.q4AK3ZZs049613@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <okuno.kohji@jp.panasonic.com> 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)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201205102003.q4AK3ZZs049613>