diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runtests.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index d8bc65673..dc4aae4b1 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -1492,7 +1492,7 @@ sub startservers { # we can't run ftps tests without stunnel return "no stunnel"; } - if(!!$ssl_version) { + if(!$ssl_version) { # we can't run ftps tests if libcurl is SSL-less return "curl lacks SSL support"; } @@ -1523,7 +1523,7 @@ sub startservers { # we can't run ftps tests without stunnel return "no stunnel"; } - if(!!$ssl_version) { + if(!$ssl_version) { # we can't run ftps tests if libcurl is SSL-less return "curl lacks SSL support"; } |