aboutsummaryrefslogtreecommitdiff
path: root/tests/runtests.pl
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-06-02 16:55:05 +0200
committerDaniel Stenberg <daniel@haxx.se>2019-06-10 09:18:16 +0200
commitdeb9462ff2de8e955c67ed441f5f48619a31198d (patch)
tree08f0555bcf3b570bcaf3b94f82a4acb524474ee8 /tests/runtests.pl
parentfc6f9ecd8954edc247d216b0bb01a929d29246e0 (diff)
wolfssl: refer to it as wolfSSL only
Remove support for, references to and use of "cyaSSL" from the source and docs. wolfSSL is the current name and there's no point in keeping references to ancient history. Assisted-by: Daniel Gustafsson Closes #3903
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-xtests/runtests.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index b5182513b..a6e1adde3 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -244,7 +244,7 @@ my $h2cver = "h2c";
my $has_openssl; # built with a lib using an OpenSSL-like API
my $has_gnutls; # built with GnuTLS
my $has_nss; # built with NSS
-my $has_yassl; # built with yassl
+my $has_wolfssl; # built with wolfSSL
my $has_polarssl; # built with polarssl
my $has_winssl; # built with WinSSL (Secure Channel aka Schannel)
my $has_darwinssl; # built with DarwinSSL (Secure Transport)
@@ -2622,8 +2622,8 @@ sub checksystem {
$has_nss=1;
$has_sslpinning=1;
}
- elsif ($libcurl =~ /(yassl|wolfssl)/i) {
- $has_yassl=1;
+ elsif ($libcurl =~ /wolfssl/i) {
+ $has_wolfssl=1;
$has_sslpinning=1;
}
elsif ($libcurl =~ /polarssl/i) {