From 33cfdf43f4309c17d6df811b3c5d0af3a1c8679f Mon Sep 17 00:00:00 2001 From: Ivo Timmermans Date: Sun, 30 Apr 2000 20:48:48 +0000 Subject: [PATCH 1/1] Key forwarding, write one byte extra. --- src/protocol.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/protocol.c b/src/protocol.c index 18fe4409..13a57937 100644 --- a/src/protocol.c +++ b/src/protocol.c @@ -744,7 +744,6 @@ cp return -1; } - syslog(LOG_DEBUG, "%08lx %08lx %d %hd", tmp.from, tmp.to, tmp.expiry, tmp.len); key = xmalloc(tmp.len); if(read(cl->meta_socket, key, tmp.len + 2) <= 0) @@ -791,12 +790,12 @@ cp syslog(LOG_DEBUG, "Forwarding public key to " IP_ADDR_S, IP_ADDR_V(fw->nexthop->vpn_ip)); tmp.type = ANS_KEY; - if(write(fw->nexthop->meta_socket, &tmp, sizeof(tmp) -2) < 0) + if(write(fw->nexthop->meta_socket, &tmp, sizeof(tmp) - 2) < 0) { syslog(LOG_ERR, "send failed: %s:%d: %m", __FILE__, __LINE__); return -1; } - if(write(fw->nexthop->meta_socket, key, tmp.len + 1) < 0) + if(write(fw->nexthop->meta_socket, key, tmp.len + 2) < 0) { syslog(LOG_ERR, "send failed: %s:%d: %m", __FILE__, __LINE__); return -1; -- 2.20.1