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 743cdb20d..296bb4c76 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-agent.c,v 1.18 1999/11/15 20:53:24 markus Exp $ */ 1/* $OpenBSD: ssh-agent.c,v 1.19 1999/11/18 14:00:49 markus Exp $ */
2 2
3/* 3/*
4 4
@@ -16,7 +16,7 @@ The authentication agent program.
16*/ 16*/
17 17
18#include "includes.h" 18#include "includes.h"
19RCSID("$OpenBSD: ssh-agent.c,v 1.18 1999/11/15 20:53:24 markus Exp $"); 19RCSID("$OpenBSD: ssh-agent.c,v 1.19 1999/11/18 14:00:49 markus Exp $");
20 20
21#include "ssh.h" 21#include "ssh.h"
22#include "rsa.h" 22#include "rsa.h"
@@ -197,7 +197,7 @@ process_remove_identity(SocketEntry *e)
197 buffer_get_bignum(&e->input, n); 197 buffer_get_bignum(&e->input, n);
198 198
199 if (bits != BN_num_bits(n)) 199 if (bits != BN_num_bits(n))
200 error("Warning: keysize mismatch: actual %d, announced %s", 200 error("Warning: keysize mismatch: actual %d, announced %d",
201 BN_num_bits(n), bits); 201 BN_num_bits(n), bits);
202 202
203 /* Check if we have the key. */ 203 /* Check if we have the key. */