From ca5b67111e4d797d15623c2163f67fe489dc3bf2 Mon Sep 17 00:00:00 2001 From: Michael Tokarev Date: Sun, 24 May 2009 22:32:24 +0400 Subject: [PATCH] Fix ans_key exchange in recent changes send_ans_key() was using the wrong in vs. outkeylength to terminate the key being sent, so it was always empty. --- src/protocol_key.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/protocol_key.c b/src/protocol_key.c index d9719ca..64225fd 100644 --- a/src/protocol_key.c +++ b/src/protocol_key.c @@ -172,7 +172,7 @@ bool send_ans_key(node_t *to) // Convert to hexadecimal and send key = alloca(2 * to->inkeylength + 1); bin2hex(to->inkey, key, to->inkeylength); - key[to->outkeylength * 2] = '\0'; + key[to->inkeylength * 2] = '\0'; return send_request(to->nexthop->connection, "%d %s %s %s %d %d %d %d", ANS_KEY, myself->name, to->name, key, -- 2.25.1