diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-05-18 14:52:08 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-05-18 14:52:08 +0000 |
commit | 758b9d7efe599e3de3472593b6f8f03cfc29ea92 (patch) | |
tree | 2e7d4cf5fe8c0d5431c3951a55b2e5445b72261d /nis/nss_compat/compat-spwd.c | |
parent | 5f1724bf0306309e7da4ebf7fcc19c03fdbf1142 (diff) | |
download | glibc-758b9d7efe599e3de3472593b6f8f03cfc29ea92.tar glibc-758b9d7efe599e3de3472593b6f8f03cfc29ea92.tar.gz glibc-758b9d7efe599e3de3472593b6f8f03cfc29ea92.tar.bz2 glibc-758b9d7efe599e3de3472593b6f8f03cfc29ea92.zip |
* nis/nss_compat/compat-pwd.c (internal_setpwent): If nss_set*ent
returned NSS_STATUS_UNAVAIL, still return NSS_STATUS_SUCCESS.
* nis/nss_compat/compat-spwd.c (internal_setspent): Likewise.
* nis/nss_compat/compat-grp.c (internal_setgrent): Likewise.
* nis/nss_compat/compat-initgroups.c (nss_setgrent, nss_endgrent):
Removed.
(init_nss_interface): Remove initialization of these variables.
2006-05-18 Ulrich Drepper <drepper@redhat.com>
* nis/nis_call.c (rec_dirsearch): Little optimization: pull
nis_free_directory forward to avoid duplication.
Diffstat (limited to 'nis/nss_compat/compat-spwd.c')
-rw-r--r-- | nis/nss_compat/compat-spwd.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/nis/nss_compat/compat-spwd.c b/nis/nss_compat/compat-spwd.c index 120e3bd38d..5c820a5f65 100644 --- a/nis/nss_compat/compat-spwd.c +++ b/nis/nss_compat/compat-spwd.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-1999,2001-2004,2005 Free Software Foundation, Inc. +/* Copyright (C) 1996-1999,2001-2005,2006 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk <kukuk@vt.uni-paderborn.de>, 1996. @@ -212,7 +212,11 @@ internal_setspent (ent_t *ent, int stayopen) give_spwd_free (&ent->pwd); if (status == NSS_STATUS_SUCCESS && nss_setspent) - return nss_setspent (stayopen); + { + status = nss_setspent (stayopen); + if (status == NSS_STATUS_UNAVAIL) + status = NSS_STATUS_SUCCESS; + } return status; } |