From: Ulrich Drepper Date: Mon, 29 Mar 2004 20:17:33 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/fedora-base~588 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=95479dc273d889da860a94fc28cb5683d98189e1;p=thirdparty%2Fglibc.git Update. 2004-03-29 Ulrich Drepper * nss/getXXbyYY_r.c: Return 0 for NSS_STATUS_NOTFOUND. --- diff --git a/ChangeLog b/ChangeLog index 41948775798..5bc34ad3c78 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-03-29 Ulrich Drepper + + * nss/getXXbyYY_r.c: Return 0 for NSS_STATUS_NOTFOUND. + 2004-03-26 Thorsten Kukuk * 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 999df4198d9..b17f33c8e07 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)