diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-07-23 03:23:04 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-07-23 03:23:04 +0000 |
commit | 3b9754f4a10bd559540d6b2109d017cc4739329a (patch) | |
tree | 127c14d6a4f21e1b7ab7f23d0dd6ea7b96cf175f /nss | |
parent | 3f36c56313e3694e079494690adf610f484d59b8 (diff) | |
download | glibc-3b9754f4a10bd559540d6b2109d017cc4739329a.zip glibc-3b9754f4a10bd559540d6b2109d017cc4739329a.tar.gz glibc-3b9754f4a10bd559540d6b2109d017cc4739329a.tar.bz2 |
Update.
* nss/nss_files/files-parse.c: Don't pollute namespace by using
strcasecmp.
Diffstat (limited to 'nss')
-rw-r--r-- | nss/nss_files/files-parse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nss/nss_files/files-parse.c b/nss/nss_files/files-parse.c index 41f0ef6..513057f 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; \ |