summaryrefslogtreecommitdiff
path: root/content/fetchers
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2010-07-17 09:13:44 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2010-07-17 09:13:44 +0000
commit1052f190754450bde64a97d28c7c3e5aeb95379b (patch)
treec076215fd39c0550f7acfe7c0b25f5b1e9b179d2 /content/fetchers
parent183974b437e4052d30812115f69f9a125c77a883 (diff)
downloadnetsurf-1052f190754450bde64a97d28c7c3e5aeb95379b.tar.gz
netsurf-1052f190754450bde64a97d28c7c3e5aeb95379b.tar.bz2
Don't suppress curl debug output, either
svn path=/trunk/netsurf/; revision=10651
Diffstat (limited to 'content/fetchers')
-rw-r--r--content/fetchers/fetch_curl.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/content/fetchers/fetch_curl.c b/content/fetchers/fetch_curl.c
index e27472a26..e53c844f1 100644
--- a/content/fetchers/fetch_curl.c
+++ b/content/fetchers/fetch_curl.c
@@ -182,8 +182,11 @@ void fetch_curl_register(void)
SETOPT(CURLOPT_VERBOSE, 0);
}
SETOPT(CURLOPT_ERRORBUFFER, fetch_error_buffer);
- if (option_suppress_curl_debug)
- SETOPT(CURLOPT_DEBUGFUNCTION, fetch_curl_ignore_debug);
+ /* jmb -- don't suppress curl debug while we're
+ * investigating low-level cache crashes
+ * if (option_suppress_curl_debug)
+ * SETOPT(CURLOPT_DEBUGFUNCTION, fetch_curl_ignore_debug);
+ */
SETOPT(CURLOPT_WRITEFUNCTION, fetch_curl_data);
SETOPT(CURLOPT_HEADERFUNCTION, fetch_curl_header);
SETOPT(CURLOPT_PROGRESSFUNCTION, fetch_curl_progress);