aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl/https/tls_authentication_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testcurl/https/tls_authentication_test.c')
-rw-r--r--src/testcurl/https/tls_authentication_test.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/testcurl/https/tls_authentication_test.c b/src/testcurl/https/tls_authentication_test.c
index edc018b2..f7d05a74 100644
--- a/src/testcurl/https/tls_authentication_test.c
+++ b/src/testcurl/https/tls_authentication_test.c
@@ -29,6 +29,7 @@
29#include <curl/curl.h> 29#include <curl/curl.h>
30#include <sys/stat.h> 30#include <sys/stat.h>
31 31
32#define DEBUG_CURL_VERBOSE 0
32#define PAGE_NOT_FOUND "<html><head><title>File not found</title></head><body>File not found</body></html>" 33#define PAGE_NOT_FOUND "<html><head><title>File not found</title></head><body>File not found</body></html>"
33 34
34#define MHD_E_MEM "Error: memory error\n" 35#define MHD_E_MEM "Error: memory error\n"
@@ -170,7 +171,7 @@ test_daemon_get (FILE * test_fd, char *cipher_suite, int proto_version)
170 doc_path, test_file_name); 171 doc_path, test_file_name);
171 172
172 c = curl_easy_init (); 173 c = curl_easy_init ();
173#ifdef DEBUG 174#if DEBUG_CURL_VERBOSE
174 curl_easy_setopt (c, CURLOPT_VERBOSE, 1); 175 curl_easy_setopt (c, CURLOPT_VERBOSE, 1);
175#endif 176#endif
176 curl_easy_setopt (c, CURLOPT_URL, url); 177 curl_easy_setopt (c, CURLOPT_URL, url);