summaryrefslogtreecommitdiff
path: root/hostfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'hostfile.c')
-rw-r--r--hostfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hostfile.c b/hostfile.c
index 79ff7f988..de21c904e 100644
--- a/hostfile.c
+++ b/hostfile.c
@@ -14,7 +14,7 @@ Functions for manipulating the known hosts files.
14*/ 14*/
15 15
16#include "includes.h" 16#include "includes.h"
17RCSID("$Id: hostfile.c,v 1.3 1999/11/16 02:37:16 damien Exp $"); 17RCSID("$Id: hostfile.c,v 1.4 1999/11/17 06:29:08 damien Exp $");
18 18
19#include "packet.h" 19#include "packet.h"
20#include "ssh.h" 20#include "ssh.h"
@@ -231,7 +231,7 @@ check_host_in_hostfile(const char *filename, const char *host,
231 } 231 }
232 232
233 /* Check if the current key is the same as the given key. */ 233 /* Check if the current key is the same as the given key. */
234 if (kbits == bits && BN_cmp(ke, e) == 0 && BN_cmp(kn, n) == 0) 234 if (BN_cmp(ke, e) == 0 && BN_cmp(kn, n) == 0)
235 { 235 {
236 /* Ok, they match. */ 236 /* Ok, they match. */
237 fclose(f); 237 fclose(f);