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.ko...@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)
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to