summaryrefslogtreecommitdiff
path: root/auth-rsa.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-08-06 21:01:49 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-08-06 21:01:49 +0000
commit940fb86c9a0ff501f812041ebaad09538c09b1b8 (patch)
tree64751673e609cc7c8784191d453887f27f1c1169 /auth-rsa.c
parentd18c80c2a65d7dd92d83c4f098132840e5450e86 (diff)
downloadopenssh-git-940fb86c9a0ff501f812041ebaad09538c09b1b8.tar.gz
- stevesk@cvs.openbsd.org 2001/07/23 18:14:58
[auth2.c auth-rsa.c] use %lu; ok markus@
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 ec8f6ce2..701d8bd5 100644
--- a/auth-rsa.c
+++ b/auth-rsa.c
@@ -14,7 +14,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: auth-rsa.c,v 1.43 2001/06/25 17:54:47 provos Exp $");
+RCSID("$OpenBSD: auth-rsa.c,v 1.44 2001/07/23 18:14:58 stevesk Exp $");
#include <openssl/rsa.h>
#include <openssl/md5.h>
@@ -223,7 +223,7 @@ auth_rsa(struct passwd *pw, BIGNUM *client_n)
/* check the real bits */
if (bits != BN_num_bits(pk->n))
- log("Warning: %s, line %ld: keysize mismatch: "
+ log("Warning: %s, line %lu: keysize mismatch: "
"actual %d vs. announced %d.",
file, linenum, BN_num_bits(pk->n), bits);