From 9bfce4bf2865c2981a8d790ae7f6c50c4e87dd97 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Thu, 12 Sep 2002 02:58:43 +0000 Subject: * nss/getnssent_r.c (__nss_getent_r): Use EAGAIN instead of errno when using h_errno and it's not set to NETDB_INTERNAL. * nss/getXXbyYY_r.c [NEED_H_ERRNO]: Likewise. * Makefile ($(common-objpfx)testrun.sh): New target. (others): Depend on it. (postclean-generated): Append it. --- nss/getXXbyYY_r.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'nss/getXXbyYY_r.c') diff --git a/nss/getXXbyYY_r.c b/nss/getXXbyYY_r.c index 58cf29300f..020848024b 100644 --- a/nss/getXXbyYY_r.c +++ b/nss/getXXbyYY_r.c @@ -244,6 +244,13 @@ done: #endif return (status == NSS_STATUS_SUCCESS ? 0 : (status == NSS_STATUS_TRYAGAIN ? errno : ENOENT)); + return (status == NSS_STATUS_SUCCESS ? 0 + : status != NSS_STATUS_TRYAGAIN ? ENOENT +#ifdef NEED_H_ERRNO + /* These functions only set errno if h_errno is NETDB_INTERNAL. */ + : *h_errnop != NETDB_INTERNAL ? EAGAIN +#endif + : errno); } -- cgit v1.2.3