aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/dht/dht_api.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dht/dht_api.c b/src/dht/dht_api.c
index 100a94523..5fff137a6 100644
--- a/src/dht/dht_api.c
+++ b/src/dht/dht_api.c
@@ -399,9 +399,11 @@ transmit_pending (void *cls, size_t size, void *buf)
399 if (GNUNET_YES == head->free_on_send) 399 if (GNUNET_YES == head->free_on_send)
400 GNUNET_free (head); 400 GNUNET_free (head);
401 process_pending_messages (handle); 401 process_pending_messages (handle);
402#if DEBUG_DHT
402 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 403 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
403 "Forwarded request of %u bytes to DHT service\n", 404 "Forwarded request of %u bytes to DHT service\n",
404 (unsigned int) tsize); 405 (unsigned int) tsize);
406#endif
405 return tsize; 407 return tsize;
406} 408}
407 409