diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-07-23 18:14:59 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-07-23 18:14:59 +0000 |
commit | ebbfd4e6fba85b79a1a296058cb494d1442f37a4 (patch) | |
tree | 878dde24aaa31d7fa6d7f2ed05d4b2b88471b84f /usr.bin | |
parent | 79f61649d12a73581e98630de074611c3c823cf7 (diff) |
use %lu; ok markus@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/auth-rsa.c | 4 | ||||
-rw-r--r-- | usr.bin/ssh/auth2.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/auth-rsa.c b/usr.bin/ssh/auth-rsa.c index ec8f6ce2188..701d8bd5317 100644 --- a/usr.bin/ssh/auth-rsa.c +++ b/usr.bin/ssh/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); diff --git a/usr.bin/ssh/auth2.c b/usr.bin/ssh/auth2.c index baaa2eaa653..812f5779a09 100644 --- a/usr.bin/ssh/auth2.c +++ b/usr.bin/ssh/auth2.c @@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth2.c,v 1.68 2001/06/26 05:50:11 markus Exp $"); +RCSID("$OpenBSD: auth2.c,v 1.69 2001/07/23 18:14:58 stevesk Exp $"); #include <openssl/evp.h> @@ -668,7 +668,7 @@ user_key_allowed2(struct passwd *pw, Key *key, char *file) if (key_equal(found, key) && auth_parse_options(pw, options, file, linenum) == 1) { found_key = 1; - debug("matching key found: file %s, line %ld", + debug("matching key found: file %s, line %lu", file, linenum); break; } |