diff options
author | Daniel Stenberg <daniel@haxx.se> | 2008-01-29 23:10:25 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2008-01-29 23:10:25 +0000 |
commit | 7b9435890d135533e12110fc4f71ebe5dab33945 (patch) | |
tree | 4d215fea23412be5fb78b0321ac2b353648e281a | |
parent | 1bfbd250272d019949c89e48bfbeb7cd00d20029 (diff) |
add verbose output to test 509 for easier debugging
-rw-r--r-- | tests/libtest/lib509.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/libtest/lib509.c b/tests/libtest/lib509.c index 5d8edd266..6650149f9 100644 --- a/tests/libtest/lib509.c +++ b/tests/libtest/lib509.c @@ -225,6 +225,8 @@ int test(char *URL) curl_easy_setopt(p.curl, CURLOPT_SSL_VERIFYPEER, FALSE); curl_easy_setopt(p.curl, CURLOPT_SSL_VERIFYHOST, 1); + curl_easy_setopt(p.curl, CURLOPT_VERBOSE, 1); + if ((multi = curl_multi_init()) == NULL) { fprintf(stderr, "curl_multi_init() failed\n"); curl_easy_cleanup(p.curl); |