aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl/https/bug-test.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2008-11-16 01:19:13 +0000
committerChristian Grothoff <christian@grothoff.org>2008-11-16 01:19:13 +0000
commit42abf1bd87d3988c3e08feb93a2cc989c225cc36 (patch)
tree41e902d139e40a4d7fc127048176f73d950b8f71 /src/testcurl/https/bug-test.c
parentb83c672f3e2656ad33dae2c38d1cc1a7eb4f106b (diff)
downloadlibmicrohttpd-42abf1bd87d3988c3e08feb93a2cc989c225cc36.tar.gz
libmicrohttpd-42abf1bd87d3988c3e08feb93a2cc989c225cc36.zip
dead code elimination
Diffstat (limited to 'src/testcurl/https/bug-test.c')
-rw-r--r--src/testcurl/https/bug-test.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/testcurl/https/bug-test.c b/src/testcurl/https/bug-test.c
index 1a700869..3960a323 100644
--- a/src/testcurl/https/bug-test.c
+++ b/src/testcurl/https/bug-test.c
@@ -32,6 +32,8 @@
32#include "gnutls.h" 32#include "gnutls.h"
33#include <curl/curl.h> 33#include <curl/curl.h>
34 34
35#define DEBUG 0
36
35#define PAGE_NOT_FOUND "<html><head><title>File not found</title></head><body>File not found</body></html>" 37#define PAGE_NOT_FOUND "<html><head><title>File not found</title></head><body>File not found</body></html>"
36 38
37#define MHD_E_MEM "Error: memory error\n" 39#define MHD_E_MEM "Error: memory error\n"
@@ -172,7 +174,7 @@ test_daemon_get (FILE * test_fd, char *cipher_suite, int proto_version)
172 doc_path, test_file_name); 174 doc_path, test_file_name);
173 175
174 c = curl_easy_init (); 176 c = curl_easy_init ();
175#ifdef DEBUG 177#if DEBUG
176 curl_easy_setopt (c, CURLOPT_VERBOSE, 1); 178 curl_easy_setopt (c, CURLOPT_VERBOSE, 1);
177#endif 179#endif
178 curl_easy_setopt (c, CURLOPT_URL, url); 180 curl_easy_setopt (c, CURLOPT_URL, url);