diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-02-05 23:36:16 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-02-05 23:36:16 +0100 |
commit | 18b540f9d18f189136e4a5cb3db5483d2a65eba2 (patch) | |
tree | 26ce64cd283e3a07538c801f84dddfe9447fb45e /tests | |
parent | f8abd564502160d2c17e9eb71b00961059dd8aef (diff) |
runtests: detect 'ares' better
... caused false detections of the threaded resolver otherwise
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runtests.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index 65096948d..c29aeaf52 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -2349,7 +2349,7 @@ sub checksystem { $has_darwinssl=1; $ssllib="DarwinSSL"; } - elsif ($libcurl =~ /ares/i) { + if ($libcurl =~ /ares/i) { $has_cares=1; $resolver="c-ares"; } |