From f163450fc0969ebd6f63c5d9bd059f6f0d107d75 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Thu, 27 Dec 2007 09:14:45 +0000 Subject: Updated to fedora-glibc-20071227T0908 --- nss/nsswitch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nss') diff --git a/nss/nsswitch.c b/nss/nsswitch.c index 28aa1b4f34..c0b661feb3 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; -- cgit v1.2.3