From fb15bef4c07e9b59a54836bcb83a00b20908d432 Mon Sep 17 00:00:00 2001 From: thorkill Date: Wed, 25 May 2016 22:47:18 +0200 Subject: [PATCH] Change misleading comment - 1.1 node does have source ID in the packet --- 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 3c21c6d1..a29399a8 100644 --- a/src/net_packet.c +++ b/src/net_packet.c @@ -1430,7 +1430,7 @@ static void handle_incoming_vpn_packet(listen_socket_t *ls, vpn_packet_t *pkt, s n = NULL; // Don't believe it if we don't have confirmation yet. if(!n) { - // It might be from a 1.1 node, which might have a source ID in the packet. + // It might be from a 1.1 node, which have a source ID in the packet. pkt->offset = 2 * sizeof(node_id_t); from = lookup_node_id(SRCID(pkt)); if(from && !memcmp(DSTID(pkt), &nullid, sizeof nullid) && from->status.sptps) {