]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Sun, 23 Jul 2000 03:23:04 +0000 (03:23 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 23 Jul 2000 03:23:04 +0000 (03:23 +0000)
* nss/nss_files/files-parse.c: Don't pollute namespace by using
strcasecmp.

ChangeLog
localedata/ChangeLog
localedata/locales/ja_JP
nss/nss_files/files-parse.c

index ff9d11c3126413fa2a3e5d53c41d42a901b5b211..be7ced0956c0f55ff9d83c315071204a969a4a3d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2000-07-22  Ulrich Drepper  <drepper@redhat.com>
 
+       * nss/nss_files/files-parse.c: Don't pollute namespace by using
+       strcasecmp.
+
        * grp/Makefile: Change Makefiles and tests to run only when necessary.
        * malloc/Makefile: Likewise.
        * malloc/tst-mtrace.sh: Likewise.
index 9824f65de5e21e949de8bb7e2b5117399bc8833b..f4815b997068bb8ba05aca4d03e9c5b2ee152846 100644 (file)
@@ -1,5 +1,8 @@
 2000-07-22  Ulrich Drepper  <drepper@redhat.com>
 
+       * locales/ja_JP (yesexpr): U0060 should be U005E.
+       (noexpr): Likewise.
+
        * locales/i18n: Remove U00A0 from blank as well.
        * tst-ctype-de_DE.ISO-8859-1.in: Remove U00A0 from blank as well.
 
index bab7cc026089aa93c2f2dd282d85f1b3c280ad7a..49ce8d6fdeb2f1fd62bc77e56a6669a3db0ec033 100644 (file)
@@ -18473,8 +18473,8 @@ END LC_COLLATE
 
 
 LC_MESSAGES
-yesexpr        "<U0060><U005B><U0079><U0059><UFF59><UFF39><U005D>"
-noexpr "<U0060><U005B><U006E><U004E><UFF4E><UFF2E><U005D>"
+yesexpr        "<U005E><U005B><U0079><U0059><UFF59><UFF39><U005D>"
+noexpr "<U005E><U005B><U006E><U004E><UFF4E><UFF2E><U005D>"
 END LC_MESSAGES
 
 
index 41f0ef6a05938495c673ce922a13f81811c1c482..513057f7d46200330d4fc08647d35b6a56a974d5 100644 (file)
@@ -1,5 +1,5 @@
 /* Common code for file-based database parsers in nss_files module.
-   Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+   Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -250,7 +250,7 @@ parse_list (char *line, struct parser_data *data, size_t datalen, int *errnop)
   if (! __strcasecmp (name, result->nameelt))                                \
     break;                                                                   \
   for (ap = result->aliaselt; *ap; ++ap)                                     \
-    if (! strcasecmp (name, *ap))                                            \
+    if (! __strcasecmp (name, *ap))                                          \
       break;                                                                 \
   if (*ap)                                                                   \
     break;                                                                   \