summaryrefslogtreecommitdiff
path: root/ssh-agent.c
diff options
context:
space:
mode:
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. */