aboutsummaryrefslogtreecommitdiff
path: root/src/transport/transport_api_new.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-06-17 09:08:40 +0000
committerChristian Grothoff <christian@grothoff.org>2011-06-17 09:08:40 +0000
commit2f4a3afce7b111f56d7a46f683b49367ea758e52 (patch)
tree4efb1d30f4eda66e9d0832be1e958fc480acf4ff /src/transport/transport_api_new.c
parentc9bb737f1dec626cf1b14dac7f52c65b6a9da921 (diff)
downloadgnunet-2f4a3afce7b111f56d7a46f683b49367ea758e52.tar.gz
gnunet-2f4a3afce7b111f56d7a46f683b49367ea758e52.zip
die harder
Diffstat (limited to 'src/transport/transport_api_new.c')
-rw-r--r--src/transport/transport_api_new.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transport/transport_api_new.c b/src/transport/transport_api_new.c
index 8ef298450..ef32a1547 100644
--- a/src/transport/transport_api_new.c
+++ b/src/transport/transport_api_new.c
@@ -1398,13 +1398,13 @@ GNUNET_TRANSPORT_notify_transmit_ready (struct GNUNET_TRANSPORT_Handle *handle,
1398 { 1398 {
1399 /* use GNUNET_TRANSPORT_try_connect first, only use this function 1399 /* use GNUNET_TRANSPORT_try_connect first, only use this function
1400 once a connection has been established */ 1400 once a connection has been established */
1401 GNUNET_break (0); 1401 GNUNET_assert (0);
1402 return NULL; 1402 return NULL;
1403 } 1403 }
1404 if (NULL != n->th) 1404 if (NULL != n->th)
1405 { 1405 {
1406 /* attempt to send two messages at the same time to the same peer */ 1406 /* attempt to send two messages at the same time to the same peer */
1407 GNUNET_break (0); 1407 GNUNET_assert (0);
1408 return NULL; 1408 return NULL;
1409 } 1409 }
1410 GNUNET_assert (NULL == n->hn); 1410 GNUNET_assert (NULL == n->hn);