diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-04-19 19:34:42 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-04-19 22:19:17 +0200 |
commit | a0704b1ac7e8dc26f0e0feac58468958305ae844 (patch) | |
tree | fa47dc8ff1f31ebfbf4c78c7f47feb1f290eae20 | |
parent | b8129a415ec68858d67747644ad868421a399a49 (diff) | |
download | glibc-a0704b1ac7e8dc26f0e0feac58468958305ae844.tar glibc-a0704b1ac7e8dc26f0e0feac58468958305ae844.tar.gz glibc-a0704b1ac7e8dc26f0e0feac58468958305ae844.tar.bz2 glibc-a0704b1ac7e8dc26f0e0feac58468958305ae844.zip |
nss_dns: Correct parentheses for the __glibc_unlikely argument
This fixes commit bee05c9d58a34ec5886faf3b56ecaa56355d94bf.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | resolv/nss_dns/dns-host.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,9 @@ 2017-04-19 Florian Weimer <fweimer@redhat.com> + * resolv/nss_dns/dns-host.c (getanswer_r): Fix parentheses. + +2017-04-19 Florian Weimer <fweimer@redhat.com> + * inet/rcmd.c (rresvport_af): Fix typo in comment. * inet/rexec.c (rexec_af): Likewise. diff --git a/resolv/nss_dns/dns-host.c b/resolv/nss_dns/dns-host.c index 7099d093f3..f121aa3de7 100644 --- a/resolv/nss_dns/dns-host.c +++ b/resolv/nss_dns/dns-host.c @@ -633,7 +633,7 @@ getanswer_r (const querybuf *answer, int anslen, const char *qname, int qtype, packtmp, sizeof packtmp); if (n != -1 && __ns_name_ntop (packtmp, bp, linebuflen) == -1) { - if (__glibc_unlikely (errno) == EMSGSIZE) + if (__glibc_unlikely (errno == EMSGSIZE)) goto too_small; n = -1; |