summaryrefslogtreecommitdiff
path: root/ssh-agent.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 /ssh-agent.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 'ssh-agent.c')
-rw-r--r--ssh-agent.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ssh-agent.c b/ssh-agent.c
index 90c64ea8a..d224386c8 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-agent.c,v 1.23 1999/11/24 19:53:51 markus Exp $ */ 1/* $OpenBSD: ssh-agent.c,v 1.24 1999/12/15 19:43:10 markus Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -9,7 +9,7 @@
9 */ 9 */
10 10
11#include "includes.h" 11#include "includes.h"
12RCSID("$OpenBSD: ssh-agent.c,v 1.23 1999/11/24 19:53:51 markus Exp $"); 12RCSID("$OpenBSD: ssh-agent.c,v 1.24 1999/12/15 19:43:10 markus Exp $");
13 13
14#include "ssh.h" 14#include "ssh.h"
15#include "rsa.h" 15#include "rsa.h"
@@ -183,7 +183,7 @@ process_remove_identity(SocketEntry *e)
183 buffer_get_bignum(&e->input, n); 183 buffer_get_bignum(&e->input, n);
184 184
185 if (bits != BN_num_bits(n)) 185 if (bits != BN_num_bits(n))
186 error("Warning: keysize mismatch: actual %d, announced %d", 186 error("Warning: identity keysize mismatch: actual %d, announced %d",
187 BN_num_bits(n), bits); 187 BN_num_bits(n), bits);
188 188
189 /* Check if we have the key. */ 189 /* Check if we have the key. */