diff options
Diffstat (limited to 'auth-rsa.c')
-rw-r--r-- | auth-rsa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/auth-rsa.c b/auth-rsa.c index 92f6277f9..5631d238c 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" |
17 | RCSID("$OpenBSD: auth-rsa.c,v 1.56 2002/06/10 16:53:06 stevesk Exp $"); | 17 | RCSID("$OpenBSD: auth-rsa.c,v 1.57 2003/04/08 20:21:28 itojun Exp $"); |
18 | 18 | ||
19 | #include <openssl/rsa.h> | 19 | #include <openssl/rsa.h> |
20 | #include <openssl/md5.h> | 20 | #include <openssl/md5.h> |
@@ -187,7 +187,7 @@ auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey) | |||
187 | secure_filename(f, file, pw, line, sizeof(line)) != 0) { | 187 | secure_filename(f, file, pw, line, sizeof(line)) != 0) { |
188 | xfree(file); | 188 | xfree(file); |
189 | fclose(f); | 189 | fclose(f); |
190 | log("Authentication refused: %s", line); | 190 | logit("Authentication refused: %s", line); |
191 | restore_uid(); | 191 | restore_uid(); |
192 | return (0); | 192 | return (0); |
193 | } | 193 | } |
@@ -246,7 +246,7 @@ auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey) | |||
246 | 246 | ||
247 | /* check the real bits */ | 247 | /* check the real bits */ |
248 | if (bits != BN_num_bits(key->rsa->n)) | 248 | if (bits != BN_num_bits(key->rsa->n)) |
249 | log("Warning: %s, line %lu: keysize mismatch: " | 249 | logit("Warning: %s, line %lu: keysize mismatch: " |
250 | "actual %d vs. announced %d.", | 250 | "actual %d vs. announced %d.", |
251 | file, linenum, BN_num_bits(key->rsa->n), bits); | 251 | file, linenum, BN_num_bits(key->rsa->n), bits); |
252 | 252 | ||