aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-10-10 13:15:21 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-10-10 13:45:36 +0300
commit95e6662960f243c9731df4891a9585650a7d5e47 (patch)
treebf1837c5a2e681c6bb91072cdddb120b3c97052c
parent121c134c1dc6f019434dc33db8cff4587cea13ad (diff)
downloadlibmicrohttpd-95e6662960f243c9731df4891a9585650a7d5e47.tar.gz
libmicrohttpd-95e6662960f243c9731df4891a9585650a7d5e47.zip
test_tls_authentication: fixed to really test TLS authentication
Previously test certificate authentication was just skipped
-rw-r--r--src/testcurl/https/test_tls_authentication.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testcurl/https/test_tls_authentication.c b/src/testcurl/https/test_tls_authentication.c
index fb6e5615..b488193f 100644
--- a/src/testcurl/https/test_tls_authentication.c
+++ b/src/testcurl/https/test_tls_authentication.c
@@ -75,7 +75,7 @@ test_secure_get (void *cls, const char *cipher_suite, int proto_version)
75 port = dinfo->port; 75 port = dinfo->port;
76 } 76 }
77 77
78 ret = test_daemon_get (NULL, cipher_suite, proto_version, port, 0); 78 ret = test_daemon_get (NULL, cipher_suite, proto_version, port, 1);
79 79
80 MHD_stop_daemon (d); 80 MHD_stop_daemon (d);
81 return ret; 81 return ret;