From 2f4a3afce7b111f56d7a46f683b49367ea758e52 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Fri, 17 Jun 2011 09:08:40 +0000 Subject: [PATCH] die harder --- src/transport/transport_api_new.c | 4 ++-- 1 file 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, { /* use GNUNET_TRANSPORT_try_connect first, only use this function once a connection has been established */ - GNUNET_break (0); + GNUNET_assert (0); return NULL; } if (NULL != n->th) { /* attempt to send two messages at the same time to the same peer */ - GNUNET_break (0); + GNUNET_assert (0); return NULL; } GNUNET_assert (NULL == n->hn); -- 2.25.1