summaryrefslogtreecommitdiff
path: root/authfile.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2015-01-15 03:08:58 +1100
committerDamien Miller <djm@mindrot.org>2015-01-15 03:08:58 +1100
commitb03ebe2c22b8166e4f64c37737f4278676e3488d (patch)
tree4b5e6701543cc6c79f3638759c7fc420491a4719 /authfile.c
parentbc42cc6fe784f36df225c44c93b74830027cb5a2 (diff)
more --without-openssl
fix some regressions caused by upstream merges enable KRLs now that they no longer require BIGNUMs
Diffstat (limited to 'authfile.c')
-rw-r--r--authfile.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/authfile.c b/authfile.c
index de9708607..d47e0058f 100644
--- a/authfile.c
+++ b/authfile.c
@@ -551,12 +551,10 @@ sshkey_check_revoked(struct sshkey *key, const char *revoked_keys_file)
551{ 551{
552 int r; 552 int r;
553 553
554#ifdef WITH_OPENSSL
555 r = ssh_krl_file_contains_key(revoked_keys_file, key); 554 r = ssh_krl_file_contains_key(revoked_keys_file, key);
556 /* If this was not a KRL to begin with then continue below */ 555 /* If this was not a KRL to begin with then continue below */
557 if (r != SSH_ERR_KRL_BAD_MAGIC) 556 if (r != SSH_ERR_KRL_BAD_MAGIC)
558 return r; 557 return r;
559#endif
560 558
561 /* 559 /*
562 * If the file is not a KRL or we can't handle KRLs then attempt to 560 * If the file is not a KRL or we can't handle KRLs then attempt to