diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-05-15 12:33:11 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-05-15 12:33:11 +0530 |
commit | cf26a0cb6a0bbaca46a01ddad6662e5e5159a32a (patch) | |
tree | e35a017c56bf53210467f323f037436b3cc9f5ab /NEWS | |
parent | a5d87b3db4f40a0f07e41f1986ac7f330743a0e7 (diff) | |
download | glibc-cf26a0cb6a0bbaca46a01ddad6662e5e5159a32a.tar glibc-cf26a0cb6a0bbaca46a01ddad6662e5e5159a32a.tar.gz glibc-cf26a0cb6a0bbaca46a01ddad6662e5e5159a32a.tar.bz2 glibc-cf26a0cb6a0bbaca46a01ddad6662e5e5159a32a.zip |
Return EAI_AGAIN for AF_UNSPEC when herrno is TRY_AGAIN (BZ #16849)
getaddrinfo correctly returns EAI_AGAIN for AF_INET and AF_INET6
queries. For AF_UNSPEC however, an older change
(a682a1bf553b1efe4dbb03207fece5b719cec482) broke the check and due to
that the returned error was EAI_NONAME.
This patch fixes the check so that a non-authoritative not-found is
returned as EAI_AGAIN to the user instead of EAI_NONAME.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -16,8 +16,8 @@ Version 2.20 16670, 16674, 16677, 16680, 16683, 16689, 16695, 16701, 16706, 16707, 16712, 16713, 16714, 16731, 16739, 16740, 16743, 16754, 16758, 16759, 16760, 16770, 16786, 16789, 16791, 16799, 16800, 16815, 16823, 16824, - 16831, 16838, 16854, 16876, 16877, 16885, 16888, 16890, 16912, 16916, - 16922, 16927, 16928, 16932. + 16831, 16838, 16849, 16854, 16876, 16877, 16885, 16888, 16890, 16912, + 16916, 16922, 16927, 16928, 16932. * The minimum Linux kernel version that this version of the GNU C Library can be used with is 2.6.32. |