From: Nathan S. Evans Date: Fri, 17 Sep 2010 15:57:37 +0000 (+0000) Subject: remove gnunet_break on allowable condition X-Git-Tag: initial-import-from-subversion-38251~20310 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ccf5941e0eb26665a7fadee86e05b7f5d31748ce;p=oweals%2Fgnunet.git remove gnunet_break on allowable condition --- diff --git a/src/core/gnunet-service-core.c b/src/core/gnunet-service-core.c index e10d03343..5c8d8dc72 100644 --- a/src/core/gnunet-service-core.c +++ b/src/core/gnunet-service-core.c @@ -2372,7 +2372,9 @@ notify_transport_connect_done (void *cls, size_t size, void *buf) /* transport should only call us to transmit a message after * telling us about a successful connection to the respective peer */ n->th = NULL; /* If this happens because of a timeout, reset n-th so another message may be sent for this peer! */ - GNUNET_break (0); +#if DEBUG_CORE + GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Timeout on notify connect!\n"); +#endif return 0; } n->th = NULL;