mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
* nss/nsswitch.c (__nss_lookup): Actually use alternative name in
second lookup.
This commit is contained in:
parent
80af8b826c
commit
0dc6c5e4d6
@ -1,3 +1,8 @@
|
||||
2007-12-26 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* nss/nsswitch.c (__nss_lookup): Actually use alternative name in
|
||||
second lookup.
|
||||
|
||||
2007-12-23 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* sysdeps/x86_64/cacheinfo.c (intel_02_known): New entry 0x3f.
|
||||
|
@ -150,7 +150,7 @@ __nss_lookup (service_user **ni, const char *fct_name, const char *fct2_name,
|
||||
{
|
||||
*fctp = __nss_lookup_function (*ni, fct_name);
|
||||
if (*fctp == NULL && fct2_name != NULL)
|
||||
*fctp = __nss_lookup_function (*ni, fct_name);
|
||||
*fctp = __nss_lookup_function (*ni, fct2_name);
|
||||
|
||||
while (*fctp == NULL
|
||||
&& nss_next_action (*ni, NSS_STATUS_UNAVAIL) == NSS_ACTION_CONTINUE
|
||||
@ -160,7 +160,7 @@ __nss_lookup (service_user **ni, const char *fct_name, const char *fct2_name,
|
||||
|
||||
*fctp = __nss_lookup_function (*ni, fct_name);
|
||||
if (*fctp == NULL && fct2_name != NULL)
|
||||
*fctp = __nss_lookup_function (*ni, fct_name);
|
||||
*fctp = __nss_lookup_function (*ni, fct2_name);
|
||||
}
|
||||
|
||||
return *fctp != NULL ? 0 : (*ni)->next == NULL ? 1 : -1;
|
||||
|
Loading…
Reference in New Issue
Block a user