diff options
Diffstat (limited to 'auth-rsa.c')
-rw-r--r-- | auth-rsa.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/auth-rsa.c b/auth-rsa.c index bf5462076..4876aad5d 100644 --- a/auth-rsa.c +++ b/auth-rsa.c | |||
@@ -246,6 +246,9 @@ auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey) | |||
246 | "actual %d vs. announced %d.", | 246 | "actual %d vs. announced %d.", |
247 | file, linenum, BN_num_bits(key->rsa->n), bits); | 247 | file, linenum, BN_num_bits(key->rsa->n), bits); |
248 | 248 | ||
249 | if (reject_blacklisted_key(key, 0) == 1) | ||
250 | continue; | ||
251 | |||
249 | /* We have found the desired key. */ | 252 | /* We have found the desired key. */ |
250 | /* | 253 | /* |
251 | * If our options do not allow this key to be used, | 254 | * If our options do not allow this key to be used, |