diff options
author | Jakub Jelinek <jakub@redhat.com> | 2006-05-19 16:04:10 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2006-05-19 16:04:10 +0000 |
commit | 4cad81b6e72ed99c7816f28ad6828196b2ac7b65 (patch) | |
tree | 418c1c32beba4d79ae71206b90fbb6a8847eca2a /locale/newlocale.c | |
parent | 3ec0d26c76d6905501034692d05bddbabae64e76 (diff) | |
download | glibc-4cad81b6e72ed99c7816f28ad6828196b2ac7b65.tar.gz glibc-4cad81b6e72ed99c7816f28ad6828196b2ac7b65.tar.xz glibc-4cad81b6e72ed99c7816f28ad6828196b2ac7b65.zip |
Updated to fedora-glibc-20060519T1550 cvs/fedora-glibc-2_4_90-8
Diffstat (limited to 'locale/newlocale.c')
-rw-r--r-- | locale/newlocale.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/locale/newlocale.c b/locale/newlocale.c index b3d4b464b1..0c31ba48ae 100644 --- a/locale/newlocale.c +++ b/locale/newlocale.c @@ -1,5 +1,5 @@ /* Return a reference to locale information record. - Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2004, 2005 + Copyright (C) 1996, 1997, 1999, 2000-2002, 2004, 2005, 2006 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. @@ -133,7 +133,8 @@ __newlocale (int category_mask, const char *locale, __locale_t base) for (cnt = 0; cnt < __LC_LAST; ++cnt) if (cnt != LC_ALL && (size_t) (cp - np) == _nl_category_name_sizes[cnt] - && memcmp (np, _nl_category_names[cnt], cp - np) == 0) + && memcmp (np, (_nl_category_names.str + + _nl_category_name_idxs[cnt]), cp - np) == 0) break; if (cnt == __LC_LAST) |