diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-12-27 10:40:41 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-12-27 10:40:41 +0000 |
commit | bde08d216ca08fc185af2f31e57ebdb5c36f4497 (patch) | |
tree | f3f693929d46ccca0999fc9e0b9d5fb5db591b9a /tests/runtests.pl | |
parent | 1abe65d928440b3b23d25746b966dd4169c358b9 (diff) |
runtests: Fixed detection of Unix Sockets feature
...following change in curl --version output.
Diffstat (limited to 'tests/runtests.pl')
-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 cac74aa47..a2cc5153a 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -2411,7 +2411,7 @@ sub checksystem { if($feat =~ /IPv6/i) { $has_ipv6 = 1; } - if($feat =~ /unix-sockets/i) { + if($feat =~ /UnixSockets/i) { $has_unix = 1; } if($feat =~ /libz/i) { |