diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2013-01-25 05:00:28 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2013-01-25 05:00:28 +0000 |
commit | 093c701e45906c3fb913655dc1e2a840011d9cbc (patch) | |
tree | 67797cadd427f3eefbf8be14850d755cebf3ca45 /usr.bin/ssh | |
parent | 92a320bf4933a62d32c2192e90d1116930bc0aef (diff) |
Revert last. Breaks due to likely typo. Let djm@ fix later.
ok djm@ via dlg@
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/krl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/krl.c b/usr.bin/ssh/krl.c index 14644a20296..6c31127f110 100644 --- a/usr.bin/ssh/krl.c +++ b/usr.bin/ssh/krl.c @@ -14,7 +14,7 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $OpenBSD: krl.c,v 1.6 2013/01/24 22:08:56 djm Exp $ */ +/* $OpenBSD: krl.c,v 1.7 2013/01/25 05:00:27 krw Exp $ */ #include <sys/types.h> #include <sys/param.h> @@ -1147,7 +1147,7 @@ is_key_revoked(struct ssh_krl *krl, const Key *key) } /* Legacy cert formats lack serial numbers */ - if (key_cert_is_legacy(key) || key->cert->serial == buf0) + if (key_cert_is_legacy(key)) return 0; bzero(&rs, sizeof(rs)); |