aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_http_client.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2011-10-18 14:49:02 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2011-10-18 14:49:02 +0000
commitd2b7b35c48254cb3e892d2a39659e108898b360f (patch)
tree755ab39acac8993c863017f5cc6a952a4bf7ef41 /src/transport/plugin_transport_http_client.c
parentf3c69312a7fca7c5a233bd39a1c2abaec9f3b263 (diff)
downloadgnunet-d2b7b35c48254cb3e892d2a39659e108898b360f.tar.gz
gnunet-d2b7b35c48254cb3e892d2a39659e108898b360f.zip
additional info
Diffstat (limited to 'src/transport/plugin_transport_http_client.c')
-rw-r--r--src/transport/plugin_transport_http_client.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/transport/plugin_transport_http_client.c b/src/transport/plugin_transport_http_client.c
index 9c56daf5f..f8e8570f6 100644
--- a/src/transport/plugin_transport_http_client.c
+++ b/src/transport/plugin_transport_http_client.c
@@ -202,8 +202,10 @@ client_run (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
202 if (easy_h == NULL) 202 if (easy_h == NULL)
203 { 203 {
204 GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING, plugin->name, 204 GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING, plugin->name,
205 "Client: Unknown connection to ended with reason `%s'\n", 205 "Client: connection to ended with reason %i: `%s', %i handles running\n",
206 curl_easy_strerror(msg->data.result)); 206 msg->data.result,
207 curl_easy_strerror(msg->data.result),
208 running);
207 continue; 209 continue;
208 } 210 }
209 211