mirror of git://sourceware.org/git/glibc.git
Update.
* nss/nss_files/files-parse.c: Don't pollute namespace by using strcasecmp.
This commit is contained in:
parent
3f36c56313
commit
3b9754f4a1
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
@ -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; \
|
||||
|
|
Loading…
Reference in New Issue