diff options
Diffstat (limited to 'nss')
-rw-r--r-- | nss/getXXbyYY_r.c | 2 | ||||
-rw-r--r-- | nss/getXXent_r.c | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/nss/getXXbyYY_r.c b/nss/getXXbyYY_r.c index 6589b47ee7..2e5cc81a2b 100644 --- a/nss/getXXbyYY_r.c +++ b/nss/getXXbyYY_r.c @@ -162,7 +162,7 @@ INTERNAL (REENTRANT_NAME) (ADD_PARAMS, LOOKUP_TYPE *resbuf, char *buffer, while (no_more == 0) { status = (*fct) (ADD_VARIABLES, resbuf, buffer, buflen, - __errno_location () H_ERRNO_VAR); + &errno H_ERRNO_VAR); /* The status is NSS_STATUS_TRYAGAIN and errno is ERANGE the provided buffer is too small. In this case we should give diff --git a/nss/getXXent_r.c b/nss/getXXent_r.c index 5c8384f2fe..49064619ae 100644 --- a/nss/getXXent_r.c +++ b/nss/getXXent_r.c @@ -245,8 +245,7 @@ INTERNAL (REENTRANT_GETNAME) (LOOKUP_TYPE *resbuf, char *buffer, size_t buflen, { int is_last_nip = nip == last_nip; - status = (*fct) (resbuf, buffer, buflen, __errno_location () - H_ERRNO_VAR); + status = (*fct) (resbuf, buffer, buflen, &errno H_ERRNO_VAR); /* The the status is NSS_STATUS_TRYAGAIN and errno is ERANGE the provided buffer is too small. In this case we should give |