summaryrefslogtreecommitdiff
path: root/auth-rsa.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth-rsa.c')
-rw-r--r--auth-rsa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/auth-rsa.c b/auth-rsa.c
index 6041a3211..f2295078b 100644
--- a/auth-rsa.c
+++ b/auth-rsa.c
@@ -16,7 +16,7 @@ validity of the host key.
16*/ 16*/
17 17
18#include "includes.h" 18#include "includes.h"
19RCSID("$Id: auth-rsa.c,v 1.7 1999/11/16 02:37:16 damien Exp $"); 19RCSID("$Id: auth-rsa.c,v 1.8 1999/11/18 21:25:48 damien Exp $");
20 20
21#include "rsa.h" 21#include "rsa.h"
22#include "packet.h" 22#include "packet.h"
@@ -265,7 +265,7 @@ auth_rsa(struct passwd *pw, BIGNUM *client_n)
265 265
266 /* check the real bits */ 266 /* check the real bits */
267 if (bits != BN_num_bits(n)) 267 if (bits != BN_num_bits(n))
268 error("Warning: error in %s, line %d: keysize mismatch: " 268 error("Warning: error in %s, line %ld: keysize mismatch: "
269 "actual size %d vs. announced %d.", 269 "actual size %d vs. announced %d.",
270 file, linenum, BN_num_bits(n), bits); 270 file, linenum, BN_num_bits(n), bits);
271 271