diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-12-26 23:54:44 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-12-26 23:54:44 +0000 |
commit | 0dc6c5e4d63446706fe80d93f0c5d0a660183a36 (patch) | |
tree | 6436f2f9b127f732dfa589c5af2ce2ba5dfa8b36 /nss | |
parent | 80af8b826c87ce6e510012dff306d0b8ba2aec34 (diff) | |
download | glibc-0dc6c5e4d63446706fe80d93f0c5d0a660183a36.zip glibc-0dc6c5e4d63446706fe80d93f0c5d0a660183a36.tar.gz glibc-0dc6c5e4d63446706fe80d93f0c5d0a660183a36.tar.bz2 |
* nss/nsswitch.c (__nss_lookup): Actually use alternative name incvs/fedora-glibc-20071227T0908
second lookup.
Diffstat (limited to 'nss')
-rw-r--r-- | nss/nsswitch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nss/nsswitch.c b/nss/nsswitch.c index 28aa1b4..c0b661f 100644 --- a/nss/nsswitch.c +++ b/nss/nsswitch.c @@ -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; |