about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-07-23 03:23:04 +0000
committerUlrich Drepper <drepper@redhat.com>2000-07-23 03:23:04 +0000
commit3b9754f4a10bd559540d6b2109d017cc4739329a (patch)
tree127c14d6a4f21e1b7ab7f23d0dd6ea7b96cf175f
parent3f36c56313e3694e079494690adf610f484d59b8 (diff)
downloadglibc-3b9754f4a10bd559540d6b2109d017cc4739329a.tar.gz
glibc-3b9754f4a10bd559540d6b2109d017cc4739329a.tar.xz
glibc-3b9754f4a10bd559540d6b2109d017cc4739329a.zip
Update.
	* nss/nss_files/files-parse.c: Don't pollute namespace by using
	strcasecmp.
-rw-r--r--ChangeLog3
-rw-r--r--localedata/ChangeLog3
-rw-r--r--localedata/locales/ja_JP4
-rw-r--r--nss/nss_files/files-parse.c4
4 files changed, 10 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index ff9d11c312..be7ced0956 100644
--- 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.
diff --git a/localedata/ChangeLog b/localedata/ChangeLog
index 9824f65de5..f4815b9970 100644
--- a/localedata/ChangeLog
+++ b/localedata/ChangeLog
@@ -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.
 
diff --git a/localedata/locales/ja_JP b/localedata/locales/ja_JP
index bab7cc0260..49ce8d6fde 100644
--- a/localedata/locales/ja_JP
+++ b/localedata/locales/ja_JP
@@ -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
 
 
diff --git a/nss/nss_files/files-parse.c b/nss/nss_files/files-parse.c
index 41f0ef6a05..513057f7d4 100644
--- a/nss/nss_files/files-parse.c
+++ b/nss/nss_files/files-parse.c
@@ -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;								      \