aboutsummaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorNathan S. Evans <evans@in.tum.de>2010-09-17 15:57:37 +0000
committerNathan S. Evans <evans@in.tum.de>2010-09-17 15:57:37 +0000
commitccf5941e0eb26665a7fadee86e05b7f5d31748ce (patch)
tree3248781ebe2e98d0b8491e8a8df4deee2f0fc808 /src/core
parentaef68bb1827f5a25832f1ea4b1477295d5a33c2c (diff)
downloadgnunet-ccf5941e0eb26665a7fadee86e05b7f5d31748ce.tar.gz
gnunet-ccf5941e0eb26665a7fadee86e05b7f5d31748ce.zip
remove gnunet_break on allowable condition
Diffstat (limited to 'src/core')
-rw-r--r--src/core/gnunet-service-core.c4
1 files changed, 3 insertions, 1 deletions
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)
2372 /* transport should only call us to transmit a message after 2372 /* transport should only call us to transmit a message after
2373 * telling us about a successful connection to the respective peer */ 2373 * telling us about a successful connection to the respective peer */
2374 n->th = NULL; /* If this happens because of a timeout, reset n-th so another message may be sent for this peer! */ 2374 n->th = NULL; /* If this happens because of a timeout, reset n-th so another message may be sent for this peer! */
2375 GNUNET_break (0); 2375#if DEBUG_CORE
2376 GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Timeout on notify connect!\n");
2377#endif
2376 return 0; 2378 return 0;
2377 } 2379 }
2378 n->th = NULL; 2380 n->th = NULL;