From 74a4f5c49e693dae502fcb18a13cd51cff6044b0 Mon Sep 17 00:00:00 2001 From: Bart Polot Date: Sun, 1 Dec 2013 00:28:03 +0000 Subject: [PATCH] - loopback traffic should not touch tunnel code. Mark as a warning, replace with assert in the future. --- src/mesh/gnunet-service-mesh_tunnel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesh/gnunet-service-mesh_tunnel.c b/src/mesh/gnunet-service-mesh_tunnel.c index b3348e7f5..eb18ae75b 100644 --- a/src/mesh/gnunet-service-mesh_tunnel.c +++ b/src/mesh/gnunet-service-mesh_tunnel.c @@ -2185,7 +2185,7 @@ GMT_send_prebuilt_message (const struct GNUNET_MessageHeader *message, { LOG (GNUNET_ERROR_TYPE_DEBUG, " loopback!\n"); handle_decrypted (t, message, fwd); - /* FIXME: call cont? */ + GNUNET_break (0); /* FIXME replace with assert */ return NULL; /* Already delivered, cannot cancel */ } -- 2.25.1