svn commit: r235239 - head/lib/libc/locale

Dimitry Andric dim at FreeBSD.org
Thu May 10 20:03:35 UTC 2012


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 at 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)


More information about the svn-src-all mailing list