From 54b756f7dfb71c5622b7738fd449e126da959864 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Wed, 31 Oct 2001 20:02:06 +0000 Subject: [PATCH] Don't forget to read public RSA key when making an outgoing connection. --- src/protocol.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/protocol.c b/src/protocol.c index 7540e473..6cb80379 100644 --- a/src/protocol.c +++ b/src/protocol.c @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: protocol.c,v 1.28.4.115 2001/10/31 12:50:24 guus Exp $ + $Id: protocol.c,v 1.28.4.116 2001/10/31 20:02:06 guus Exp $ */ #include "config.h" @@ -232,11 +232,11 @@ cp syslog(LOG_ERR, _("Peer %s had unknown identity (%s)"), c->hostname, c->name); return -1; } + } - if(read_rsa_public_key(c)) - { - return -1; - } + if(read_rsa_public_key(c)) + { + return -1; } c->allow_request = METAKEY; -- 2.20.1