aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl/https/test_tls_options.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testcurl/https/test_tls_options.c')
-rw-r--r--src/testcurl/https/test_tls_options.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/testcurl/https/test_tls_options.c b/src/testcurl/https/test_tls_options.c
index 8c67a0c6..7e15e3ca 100644
--- a/src/testcurl/https/test_tls_options.c
+++ b/src/testcurl/https/test_tls_options.c
@@ -28,9 +28,9 @@
28#include "microhttpd.h" 28#include "microhttpd.h"
29#include <sys/stat.h> 29#include <sys/stat.h>
30#include <limits.h> 30#include <limits.h>
31#ifdef MHD_HTTPS_REQUIRE_GRYPT 31#ifdef MHD_HTTPS_REQUIRE_GCRYPT
32#include <gcrypt.h> 32#include <gcrypt.h>
33#endif /* MHD_HTTPS_REQUIRE_GRYPT */ 33#endif /* MHD_HTTPS_REQUIRE_GCRYPT */
34#include "tls_test_common.h" 34#include "tls_test_common.h"
35#include "tls_test_keys.h" 35#include "tls_test_keys.h"
36 36
@@ -100,13 +100,13 @@ main (int argc, char *const *argv)
100 else 100 else
101 port = 3010; 101 port = 3010;
102 102
103#ifdef MHD_HTTPS_REQUIRE_GRYPT 103#ifdef MHD_HTTPS_REQUIRE_GCRYPT
104 gcry_control (GCRYCTL_DISABLE_SECMEM, 0); 104 gcry_control (GCRYCTL_DISABLE_SECMEM, 0);
105 gcry_control (GCRYCTL_ENABLE_QUICK_RANDOM, 0); 105 gcry_control (GCRYCTL_ENABLE_QUICK_RANDOM, 0);
106#ifdef GCRYCTL_INITIALIZATION_FINISHED 106#ifdef GCRYCTL_INITIALIZATION_FINISHED
107 gcry_control (GCRYCTL_INITIALIZATION_FINISHED, 0); 107 gcry_control (GCRYCTL_INITIALIZATION_FINISHED, 0);
108#endif 108#endif
109#endif /* MHD_HTTPS_REQUIRE_GRYPT */ 109#endif /* MHD_HTTPS_REQUIRE_GCRYPT */
110 if (! testsuite_curl_global_init ()) 110 if (! testsuite_curl_global_init ())
111 return 99; 111 return 99;
112 112