aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl/https/test_tls_authentication.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testcurl/https/test_tls_authentication.c')
-rw-r--r--src/testcurl/https/test_tls_authentication.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/testcurl/https/test_tls_authentication.c b/src/testcurl/https/test_tls_authentication.c
index bedc3dd9..1fa2f795 100644
--- a/src/testcurl/https/test_tls_authentication.c
+++ b/src/testcurl/https/test_tls_authentication.c
@@ -86,7 +86,6 @@ int
86main (int argc, char *const *argv) 86main (int argc, char *const *argv)
87{ 87{
88 unsigned int errorCount = 0; 88 unsigned int errorCount = 0;
89 const char *aes256_sha = "AES256-SHA";
90 (void) argc; 89 (void) argc;
91 (void) argv; /* Unused. Silent compiler warning. */ 90 (void) argv; /* Unused. Silent compiler warning. */
92 91
@@ -105,13 +104,8 @@ main (int argc, char *const *argv)
105 return 77; 104 return 77;
106 } 105 }
107 106
108 if (curl_tls_is_nss ())
109 {
110 aes256_sha = "rsa_aes_256_sha";
111 }
112
113 errorCount += 107 errorCount +=
114 test_secure_get (NULL, aes256_sha, CURL_SSLVERSION_TLSv1); 108 test_secure_get (NULL, NULL, CURL_SSLVERSION_TLSv1);
115 109
116 print_test_result (errorCount, argv[0]); 110 print_test_result (errorCount, argv[0]);
117 111