summaryrefslogtreecommitdiff
path: root/auth2-pubkey.c
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2010-03-31 10:49:51 +0100
committerColin Watson <cjwatson@debian.org>2010-03-31 10:49:51 +0100
commit56ea360619c4bbe1b604add62d3cbf472392617f (patch)
tree3d7450c164b851412cb8ca28f87547c62595659d /auth2-pubkey.c
parentefd3d4522636ae029488c2e9730b60c88e257d2e (diff)
ssh-vulnkey.patch: update another call to auth_key_is_revoked
Diffstat (limited to 'auth2-pubkey.c')
-rw-r--r--auth2-pubkey.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/auth2-pubkey.c b/auth2-pubkey.c
index ae0638825..b6ed62857 100644
--- a/auth2-pubkey.c
+++ b/auth2-pubkey.c
@@ -327,7 +327,8 @@ user_key_allowed(struct passwd *pw, Key *key)
327 327
328 if (auth_key_is_revoked(key, 0)) 328 if (auth_key_is_revoked(key, 0))
329 return 0; 329 return 0;
330 if (key_is_cert(key) && auth_key_is_revoked(key->cert->signature_key)) 330 if (key_is_cert(key) &&
331 auth_key_is_revoked(key->cert->signature_key, 0))
331 return 0; 332 return 0;
332 333
333 success = user_cert_trusted_ca(pw, key); 334 success = user_cert_trusted_ca(pw, key);