summaryrefslogtreecommitdiff
path: root/hostfile.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-04-30 10:00:53 +1000
committerDamien Miller <djm@mindrot.org>2000-04-30 10:00:53 +1000
commitbd483e76909905f28d1604125f70c7cf8271f66e (patch)
tree4363a925d1f530b444c5726601ecf9efc684c218 /hostfile.c
parentc998f9eb7cfb3bfef8c78b0a47bdb6db29a871e8 (diff)
- More OpenBSD updates:
[session.c] - don't call chan_write_failed() if we are not writing [auth-rsa.c auth1.c authfd.c hostfile.c ssh-agent.c] - keysize warnings error() -> log()
Diffstat (limited to 'hostfile.c')
-rw-r--r--hostfile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/hostfile.c b/hostfile.c
index e1c2429bd..bac285da5 100644
--- a/hostfile.c
+++ b/hostfile.c
@@ -14,7 +14,7 @@
14 */ 14 */
15 15
16#include "includes.h" 16#include "includes.h"
17RCSID("$OpenBSD: hostfile.c,v 1.17 2000/04/26 20:56:29 markus Exp $"); 17RCSID("$OpenBSD: hostfile.c,v 1.18 2000/04/29 18:11:52 markus Exp $");
18 18
19#include "packet.h" 19#include "packet.h"
20#include "match.h" 20#include "match.h"
@@ -70,10 +70,10 @@ hostfile_check_key(int bits, Key *key, const char *host, const char *filename, i
70 if (key == NULL || key->type != KEY_RSA || key->rsa == NULL) 70 if (key == NULL || key->type != KEY_RSA || key->rsa == NULL)
71 return 1; 71 return 1;
72 if (bits != BN_num_bits(key->rsa->n)) { 72 if (bits != BN_num_bits(key->rsa->n)) {
73 error("Warning: %s, line %d: keysize mismatch for host %s: " 73 log("Warning: %s, line %d: keysize mismatch for host %s: "
74 "actual %d vs. announced %d.", 74 "actual %d vs. announced %d.",
75 filename, linenum, host, BN_num_bits(key->rsa->n), bits); 75 filename, linenum, host, BN_num_bits(key->rsa->n), bits);
76 error("Warning: replace %d with %d in %s, line %d.", 76 log("Warning: replace %d with %d in %s, line %d.",
77 bits, BN_num_bits(key->rsa->n), filename, linenum); 77 bits, BN_num_bits(key->rsa->n), filename, linenum);
78 } 78 }
79 return 1; 79 return 1;