aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2014-02-05 23:36:16 +0100
committerDaniel Stenberg <daniel@haxx.se>2014-02-05 23:36:16 +0100
commit18b540f9d18f189136e4a5cb3db5483d2a65eba2 (patch)
tree26ce64cd283e3a07538c801f84dddfe9447fb45e /tests
parentf8abd564502160d2c17e9eb71b00961059dd8aef (diff)
runtests: detect 'ares' better
... caused false detections of the threaded resolver otherwise
Diffstat (limited to 'tests')
-rwxr-xr-xtests/runtests.pl2
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";
}