diff options
author | Damien Miller <djm@mindrot.org> | 1999-12-16 13:18:04 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 1999-12-16 13:18:04 +1100 |
commit | 5e7c10eedb1745b9d72dd184ceede504d92e5a3a (patch) | |
tree | efe7b3894512f04a8b1f329f8ab5cb6ea3a361dd /authfd.c | |
parent | 18ccf85863520823b9210dfd1d67366d90d74735 (diff) | |
download | openssh-git-5e7c10eedb1745b9d72dd184ceede504d92e5a3a.tar.gz |
- 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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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. */ |