aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-09-17 17:38:58 +0000
committerChristian Grothoff <christian@grothoff.org>2012-09-17 17:38:58 +0000
commitab425eef0ff9424dfa3bb43764ba4bc56b263e8a (patch)
tree8eb5721e914bcddc427d60dcbdd38d9db1f36ba4
parent9b9f6189c07d416312c4e4c952ada44e0173c6d0 (diff)
downloadgnunet-ab425eef0ff9424dfa3bb43764ba4bc56b263e8a.tar.gz
gnunet-ab425eef0ff9424dfa3bb43764ba4bc56b263e8a.zip
-fix compiler warning
-rw-r--r--src/transport/plugin_transport_http_client.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/transport/plugin_transport_http_client.c b/src/transport/plugin_transport_http_client.c
index 7d3c8f9ea..4b10eb52b 100644
--- a/src/transport/plugin_transport_http_client.c
+++ b/src/transport/plugin_transport_http_client.c
@@ -875,10 +875,7 @@ client_receive (void *stream, size_t size, size_t nmemb, void *cls)
875 } 875 }
876 if (NULL == s->msg_tk) 876 if (NULL == s->msg_tk)
877 s->msg_tk = GNUNET_SERVER_mst_create (&client_receive_mst_cb, s); 877 s->msg_tk = GNUNET_SERVER_mst_create (&client_receive_mst_cb, s);
878 //GNUNET_break (0); 878 (void) GNUNET_SERVER_mst_receive (s->msg_tk, s, stream, len, GNUNET_NO, GNUNET_NO);
879 int res = GNUNET_SERVER_mst_receive (s->msg_tk, s, stream, len, GNUNET_NO, GNUNET_NO);
880 //GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MST RESULT : %u \n" , res);
881 //GNUNET_break (0);
882 return len; 879 return len;
883 880
884} 881}