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 ec8f6ce21..701d8bd53 100644
--- a/auth-rsa.c
+++ b/auth-rsa.c
@@ -14,7 +14,7 @@
14 */ 14 */
15 15
16#include "includes.h" 16#include "includes.h"
17RCSID("$OpenBSD: auth-rsa.c,v 1.43 2001/06/25 17:54:47 provos Exp $"); 17RCSID("$OpenBSD: auth-rsa.c,v 1.44 2001/07/23 18:14:58 stevesk Exp $");
18 18
19#include <openssl/rsa.h> 19#include <openssl/rsa.h>
20#include <openssl/md5.h> 20#include <openssl/md5.h>
@@ -223,7 +223,7 @@ auth_rsa(struct passwd *pw, BIGNUM *client_n)
223 223
224 /* check the real bits */ 224 /* check the real bits */
225 if (bits != BN_num_bits(pk->n)) 225 if (bits != BN_num_bits(pk->n))
226 log("Warning: %s, line %ld: keysize mismatch: " 226 log("Warning: %s, line %lu: keysize mismatch: "
227 "actual %d vs. announced %d.", 227 "actual %d vs. announced %d.",
228 file, linenum, BN_num_bits(pk->n), bits); 228 file, linenum, BN_num_bits(pk->n), bits);
229 229