summaryrefslogtreecommitdiffstats
path: root/authfd.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-12-16 13:18:04 +1100
committerDamien Miller <djm@mindrot.org>1999-12-16 13:18:04 +1100
commit5e7c10eedb1745b9d72dd184ceede504d92e5a3a (patch)
treeefe7b3894512f04a8b1f329f8ab5cb6ea3a361dd /authfd.c
parent18ccf85863520823b9210dfd1d67366d90d74735 (diff)
- Merged OpenBSD CVS changes:
- [authfd.c ssh-agent.c] keysize warnings talk about identity files - [packet.c] "Connection closed by x.x.x.x": fatal() -> log()
Diffstat (limited to 'authfd.c')
-rw-r--r--authfd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/authfd.c b/authfd.c
index 1a62c3ed..cb7bbd5e 100644
--- a/authfd.c
+++ b/authfd.c
@@ -14,7 +14,7 @@
*/
#include "includes.h"
-RCSID("$Id: authfd.c,v 1.9 1999/12/07 04:38:32 damien Exp $");
+RCSID("$Id: authfd.c,v 1.10 1999/12/16 02:18:04 damien Exp $");
#include "ssh.h"
#include "rsa.h"
@@ -222,7 +222,7 @@ ssh_get_next_identity(AuthenticationConnection *auth,
*comment = buffer_get_string(&auth->identities, NULL);
if (bits != BN_num_bits(n))
- error("Warning: keysize mismatch: actual %d, announced %u",
+ error("Warning: identity keysize mismatch: actual %d, announced %u",
BN_num_bits(n), bits);
/* Decrement the number of remaining entries. */