diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-04-14 06:53:34 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-04-14 06:53:34 +0000 |
commit | c3dd928e29aca65ae38ece892c6801f0bd294088 (patch) | |
tree | 1681442d68891cc9dff53ed8589633feba6d7a41 | |
parent | aba6c2b89d96f661c2b4d77fc925b47921008e3d (diff) |
enable verbose as well
-rw-r--r-- | tests/libtest/lib511.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/libtest/lib511.c b/tests/libtest/lib511.c index 9b9980a71..4afb1dc9f 100644 --- a/tests/libtest/lib511.c +++ b/tests/libtest/lib511.c @@ -7,6 +7,7 @@ int test(char *URL) curl_easy_setopt(curl, CURLOPT_URL, URL); curl_easy_setopt(curl, CURLOPT_FILETIME, 1); curl_easy_setopt(curl, CURLOPT_NOBODY, 1); + curl_easy_setopt(curl, CURLOPT_VERBOSE, 1); res = curl_easy_perform(curl); curl_easy_cleanup(curl); return (int)res; |