From 1a6bf24e5dca8f15965bca96f7c0063525564858 Mon Sep 17 00:00:00 2001 From: Bart Polot Date: Mon, 23 Jan 2012 14:27:18 +0000 Subject: [PATCH] - Additional fix to #2095 (local clients can do ToOrigin too) --- src/mesh/gnunet-service-mesh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesh/gnunet-service-mesh.c b/src/mesh/gnunet-service-mesh.c index a09c60f93..1c47d7fcf 100644 --- a/src/mesh/gnunet-service-mesh.c +++ b/src/mesh/gnunet-service-mesh.c @@ -4212,7 +4212,7 @@ handle_local_to_origin (void *cls, struct GNUNET_SERVER_Client *client, } /* It shouldn't be a local tunnel. */ - if (NULL != t->client) + if (NULL != t->client && NULL == t->client_dest) { GNUNET_break (0); GNUNET_SERVER_receive_done (client, GNUNET_SYSERR); -- 2.25.1