diff options
author | Ulrich Drepper <drepper@redhat.com> | 2008-10-30 16:00:44 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2008-10-30 16:00:44 +0000 |
commit | 21b07d8ba586c231710a5197888e7130f996dd47 (patch) | |
tree | ab1bc9c0b43dbe984a31e90257cf8f67035fe621 /resolv | |
parent | 4caa3fb7c898bc1dd7458b218d7847e218248ec1 (diff) | |
download | glibc-21b07d8ba586c231710a5197888e7130f996dd47.tar glibc-21b07d8ba586c231710a5197888e7130f996dd47.tar.gz glibc-21b07d8ba586c231710a5197888e7130f996dd47.tar.bz2 glibc-21b07d8ba586c231710a5197888e7130f996dd47.zip |
* resolv/res_send.c (send_dg): On timeout, only return nonzero
result if any of the queries really provided an answer.
Diffstat (limited to 'resolv')
-rw-r--r-- | resolv/res_send.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resolv/res_send.c b/resolv/res_send.c index 59cdc214e2..7c3d620fb6 100644 --- a/resolv/res_send.c +++ b/resolv/res_send.c @@ -1008,7 +1008,7 @@ send_dg(res_state statp, } if (n == 0) { Dprint(statp->options & RES_DEBUG, (stdout, ";; timeout\n")); - if (recvresp1 || (buf2 != NULL && recvresp2)) + if (recvresp1 > 1 || (buf2 != NULL && recvresp2 > 1)) { *resplen2 = 1; return resplen; |