From 84ecc972e5c11f683ac618c5a734a17c295d9b46 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Sun, 31 May 2015 23:51:39 +0200 Subject: [PATCH] Fix missing return value caused by the previous commit. --- src/net_packet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net_packet.c b/src/net_packet.c index 69835eef..fc5720a2 100644 --- a/src/net_packet.c +++ b/src/net_packet.c @@ -458,7 +458,7 @@ bool receive_tcppacket_sptps(connection_t *c, const char *data, int len) { /* This can happen in the form of a race condition if the node just became unreachable. */ logger(DEBUG_TRAFFIC, LOG_WARNING, "Cannot relay TCP packet from %s (%s) because the destination, %s (%s), is unreachable", from->name, from->hostname, to->name, to->hostname); - return; + return true; } /* Help the sender reach us over UDP. -- 2.20.1