From e6d329961fa06384125a7c14ccc3066885f5be96 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 13 Jun 2003 05:19:10 +0000 Subject: Update. 2003-06-12 Ulrich Drepper * wcsmbs/wchar.h: Define wint_t in std namespace, too [PR libc/5034]. --- nss/getXXbyYY_r.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'nss') diff --git a/nss/getXXbyYY_r.c b/nss/getXXbyYY_r.c index 3f873a5fde..06f2abedd0 100644 --- a/nss/getXXbyYY_r.c +++ b/nss/getXXbyYY_r.c @@ -248,13 +248,12 @@ done: POSTPROCESS; #endif return (status == NSS_STATUS_SUCCESS ? 0 - : (status != NSS_STATUS_TRYAGAIN #ifdef NEED_H_ERRNO - /* These functions only set errno if h_errno is - NETDB_INTERNAL. */ - && *h_errnop == NETDB_INTERNAL + /* These functions only set errno if h_errno is NETDB_INTERNAL. */ + : status == NSS_STATUS_TRYAGAIN && *h_errnop != NETDB_INTERNAL + ? EAGAIN #endif - ? errno : EAGAIN)); + : errno); } -- cgit v1.2.3