From: Guus Sliepen Date: Sun, 31 May 2015 21:51:39 +0000 (+0200) Subject: Fix missing return value caused by the previous commit. X-Git-Tag: release-1.1pre12~126 X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=84ecc972e5c11f683ac618c5a734a17c295d9b46 Fix missing return value caused by the previous commit. --- 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.