diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | nss/getXXbyYY_r.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2004-03-29 Ulrich Drepper <drepper@redhat.com> + + * nss/getXXbyYY_r.c: Return 0 for NSS_STATUS_NOTFOUND. + 2004-03-26 Thorsten Kukuk <kukuk@suse.de> * nis/nss_nis/nis-grp.c (_nss_nis_getgrnam_r): Don't diff --git a/nss/getXXbyYY_r.c b/nss/getXXbyYY_r.c index 999df4198d..b17f33c8e0 100644 --- a/nss/getXXbyYY_r.c +++ b/nss/getXXbyYY_r.c @@ -246,7 +246,7 @@ done: #endif int res; - if (status == NSS_STATUS_SUCCESS) + if (status == NSS_STATUS_SUCCESS || status == NSS_STATUS_NOTFOUND) res = 0; /* Don't pass back ERANGE if this is not for a too-small buffer. */ else if (errno == ERANGE && status != NSS_STATUS_TRYAGAIN) |