diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-12-02 20:06:20 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-12-02 20:06:20 +0530 |
commit | df3aedaf38df715f5faf3a0a2795e61098980963 (patch) | |
tree | f4a379d3a3c46279318b2f806930f1bd984b762d /nss/nss_files | |
parent | b42ad38d63776fc973b234fa17c429b4a06c6fa6 (diff) | |
download | glibc-df3aedaf38df715f5faf3a0a2795e61098980963.tar.gz glibc-df3aedaf38df715f5faf3a0a2795e61098980963.tar.xz glibc-df3aedaf38df715f5faf3a0a2795e61098980963.zip |
Use herrnop directly
H_ERRNO_ARGS is unnecessary since we this file is specifically for hosts lookup.
Diffstat (limited to 'nss/nss_files')
-rw-r--r-- | nss/nss_files/files-hosts.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nss/nss_files/files-hosts.c b/nss/nss_files/files-hosts.c index 957c9aa036..cfec75da76 100644 --- a/nss/nss_files/files-hosts.c +++ b/nss/nss_files/files-hosts.c @@ -399,8 +399,8 @@ _nss_files_gethostbyname4_r (const char *name, struct gaih_addrtuple **pat, buflen = buflen > pad ? buflen - pad : 0; struct hostent result; - status = internal_getent (&result, buffer, buflen, errnop - H_ERRNO_ARG, AF_UNSPEC, 0); + status = internal_getent (&result, buffer, buflen, errnop, + herrnop, AF_UNSPEC, 0); if (status != NSS_STATUS_SUCCESS) break; |