summaryrefslogtreecommitdiff
path: root/authfd.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 /authfd.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 'authfd.c')
-rw-r--r--authfd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/authfd.c b/authfd.c
index 3476e799a..36b4d6ce4 100644
--- a/authfd.c
+++ b/authfd.c
@@ -14,7 +14,7 @@
14 */ 14 */
15 15
16#include "includes.h" 16#include "includes.h"
17RCSID("$Id: authfd.c,v 1.13 2000/04/16 02:31:49 damien Exp $"); 17RCSID("$Id: authfd.c,v 1.14 2000/04/30 00:00:53 damien Exp $");
18 18
19#include "ssh.h" 19#include "ssh.h"
20#include "rsa.h" 20#include "rsa.h"
@@ -217,8 +217,8 @@ ssh_get_next_identity(AuthenticationConnection *auth,
217 *comment = buffer_get_string(&auth->identities, NULL); 217 *comment = buffer_get_string(&auth->identities, NULL);
218 218
219 if (bits != BN_num_bits(n)) 219 if (bits != BN_num_bits(n))
220 error("Warning: identity keysize mismatch: actual %d, announced %u", 220 log("Warning: identity keysize mismatch: actual %d, announced %u",
221 BN_num_bits(n), bits); 221 BN_num_bits(n), bits);
222 222
223 /* Decrement the number of remaining entries. */ 223 /* Decrement the number of remaining entries. */
224 auth->howmany--; 224 auth->howmany--;