X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fprotocol_key.c;h=aec788994fbe9427dc912cbfd7af212ad04842d0;hp=621bb1b8784ee0007dc94b951ee0485f15c720d3;hb=c6d01588312bec7691e72b42cf20c59ffe2749c2;hpb=626d5956d2bb0660ba315fba77da6cec9776fd3b diff --git a/src/protocol_key.c b/src/protocol_key.c index 621bb1b8..aec78899 100644 --- a/src/protocol_key.c +++ b/src/protocol_key.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_key.c,v 1.1.4.2 2002/02/11 15:59:18 guus Exp $ + $Id: protocol_key.c,v 1.1.4.3 2002/02/20 19:25:09 guus Exp $ */ #include "config.h" @@ -41,7 +41,7 @@ #include "connection.h" #include "node.h" #include "edge.h" -\ + #include "system.h" int mykeyused = 0; @@ -245,6 +245,8 @@ cp from->cipher = NULL; } + from->maclength = maclength; + if(digest) { from->digest = EVP_get_digestbynid(digest); @@ -253,7 +255,6 @@ cp syslog(LOG_ERR, _("Node %s (%s) uses unknown digest!"), from->name, from->hostname); return -1; } - from->maclength = maclength; if(from->maclength > from->digest->md_size || from->maclength < 0) { syslog(LOG_ERR, _("Node %s (%s) uses bogus MAC length!"), from->name, from->hostname); @@ -263,7 +264,6 @@ cp else { from->digest = NULL; - from->maclength = maclength; } from->compression = compression;