From: Daniel Stenberg Date: Wed, 28 Nov 2007 15:18:27 +0000 (+0000) Subject: the gethostbyname fix applied here as well X-Git-Tag: curl-7_18_0~211 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=800a72878a5b66e10f3f73ee0ddd0646ae3874db;p=curl the gethostbyname fix applied here as well --- diff --git a/ares/ares_gethostbyaddr.c b/ares/ares_gethostbyaddr.c index b3abc093e..0617c0a59 100644 --- a/ares/ares_gethostbyaddr.c +++ b/ares/ares_gethostbyaddr.c @@ -142,7 +142,11 @@ static void next_lookup(struct addr_query *aquery) return; case 'f': status = file_lookup(&aquery->addr, aquery->family, &host); - if (status != ARES_ENOTFOUND) + + /* this status check below previously checked for !ARES_ENOTFOUND, + but we should not assume that this single error code is the one + that can occur, as that is in fact no longer the case */ + if (status == ARES_SUCCESS) { end_aquery(aquery, status, host); return;