aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl/https/mhds_multi_daemon_test.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-11-18 22:11:38 +0000
committerChristian Grothoff <christian@grothoff.org>2010-11-18 22:11:38 +0000
commit92b638cf8467f90b6e345046bedd627bf00b8707 (patch)
treee77247ce1773798422d05c6d2a348fac0f2ea365 /src/testcurl/https/mhds_multi_daemon_test.c
parent8524a6cfe99a34f776a334652c8558b45792ab12 (diff)
downloadlibmicrohttpd-92b638cf8467f90b6e345046bedd627bf00b8707.tar.gz
libmicrohttpd-92b638cf8467f90b6e345046bedd627bf00b8707.zip
patch fixing #1619
Diffstat (limited to 'src/testcurl/https/mhds_multi_daemon_test.c')
-rw-r--r--src/testcurl/https/mhds_multi_daemon_test.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/testcurl/https/mhds_multi_daemon_test.c b/src/testcurl/https/mhds_multi_daemon_test.c
index 51c90158..4713f1ea 100644
--- a/src/testcurl/https/mhds_multi_daemon_test.c
+++ b/src/testcurl/https/mhds_multi_daemon_test.c
@@ -106,9 +106,14 @@ main (int argc, char *const *argv)
106 return -1; 106 return -1;
107 } 107 }
108 108
109 char *aes256_sha = "AES256-SHA";
110 if (curl_uses_nss_ssl() == 0)
111 {
112 aes256_sha = "rsa_aes_256_sha";
113 }
109 114
110 errorCount += 115 errorCount +=
111 test_concurent_daemon_pair (NULL, "AES256-SHA", CURL_SSLVERSION_SSLv3); 116 test_concurent_daemon_pair (NULL, aes256_sha, CURL_SSLVERSION_SSLv3);
112 117
113 print_test_result (errorCount, "concurent_daemon_pair"); 118 print_test_result (errorCount, "concurent_daemon_pair");
114 119