summaryrefslogtreecommitdiff
path: root/src/trg-client.c
diff options
context:
space:
mode:
authorGravatar Alan F <ajf@eth0.org.uk>2014-02-25 09:50:50 +0000
committerGravatar Alan F <ajf@eth0.org.uk>2014-02-25 09:50:50 +0000
commit361cde21cdc9fff703c63e393e48a2a3409d162a (patch)
treeaffcee7bea40fb3cecd42d54c219a280ce845efc /src/trg-client.c
parent907636d97b1893e9df4ef28489c92d32118c6fa2 (diff)
put rss tree view in a scroll window, display HTTP error codes on error (only use curl_strerror for communications error, != CURLE_OK)
Diffstat (limited to 'src/trg-client.c')
-rw-r--r--src/trg-client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/trg-client.c b/src/trg-client.c
index 25a78dd..7e1a784 100644
--- a/src/trg-client.c
+++ b/src/trg-client.c
@@ -532,7 +532,7 @@ static CURL* get_curl(TrgClient *tc, guint http_class)
curl_easy_setopt(curl, CURLOPT_USERAGENT, PACKAGE_NAME);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION,
&http_receive_callback);
- //curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
+ curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
if (http_class == HTTP_CLASS_TRANSMISSION) {
curl_easy_setopt(curl, CURLOPT_WRITEHEADER, (void *) tc);