aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_http_client.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-12-19 15:13:31 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-12-19 15:13:31 +0000
commit8f3fbd9de741f352f5f848ffd20c80a15897dd91 (patch)
tree80aa4664a58aaff4797119d6418b3d616aa0b799 /src/transport/plugin_transport_http_client.c
parent5cad25cce8ad45c4da7f433da455ef485d84a100 (diff)
downloadgnunet-8f3fbd9de741f352f5f848ffd20c80a15897dd91.tar.gz
gnunet-8f3fbd9de741f352f5f848ffd20c80a15897dd91.zip
trying to analyze bug 0003218
Diffstat (limited to 'src/transport/plugin_transport_http_client.c')
-rw-r--r--src/transport/plugin_transport_http_client.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/transport/plugin_transport_http_client.c b/src/transport/plugin_transport_http_client.c
index ce493ab4e..7246f5303 100644
--- a/src/transport/plugin_transport_http_client.c
+++ b/src/transport/plugin_transport_http_client.c
@@ -480,7 +480,8 @@ http_client_plugin_send (void *cls,
480 /* lookup if session is really existing */ 480 /* lookup if session is really existing */
481 if (GNUNET_YES != client_exist_session (plugin, s)) 481 if (GNUNET_YES != client_exist_session (plugin, s))
482 { 482 {
483 GNUNET_break (0); 483 GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING, plugin->name,
484 "Trying to send with invalid session %p \n");
484 return GNUNET_SYSERR; 485 return GNUNET_SYSERR;
485 } 486 }
486 487