=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/hostfile.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- src/usr.bin/ssh/hostfile.c 1999/11/15 20:53:24 1.5 +++ src/usr.bin/ssh/hostfile.c 1999/11/16 15:44:41 1.6 @@ -14,7 +14,7 @@ */ #include "includes.h" -RCSID("$Id: hostfile.c,v 1.5 1999/11/15 20:53:24 markus Exp $"); +RCSID("$Id: hostfile.c,v 1.6 1999/11/16 15:44:41 provos Exp $"); #include "packet.h" #include "ssh.h" @@ -231,7 +231,7 @@ } /* Check if the current key is the same as the given key. */ - if (kbits == bits && BN_cmp(ke, e) == 0 && BN_cmp(kn, n) == 0) + if (BN_cmp(ke, e) == 0 && BN_cmp(kn, n) == 0) { /* Ok, they match. */ fclose(f);