diff options
author | djm@openbsd.org <djm@openbsd.org> | 2019-09-03 10:35:27 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-09-03 10:40:24 +0200 |
commit | d637c4aee6f9b5280c13c020d7653444ac1fcaa5 (patch) | |
tree | f4844d9e77f1008b5928f72d5542ec075239dd4e /ssh-keygen.c | |
parent | upstream: sshsig: lightweight signature and verification ability (diff) | |
download | openssh-d637c4aee6f9b5280c13c020d7653444ac1fcaa5.tar.xz openssh-d637c4aee6f9b5280c13c020d7653444ac1fcaa5.zip |
upstream: sshsig tweaks and improvements from and suggested by
Markus
ok markus/me
OpenBSD-Commit-ID: ea4f46ad5a16b27af96e08c4877423918c4253e9
Diffstat (limited to 'ssh-keygen.c')
-rw-r--r-- | ssh-keygen.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ssh-keygen.c b/ssh-keygen.c index 76bc41b2f..527cfcf63 100644 --- a/ssh-keygen.c +++ b/ssh-keygen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keygen.c,v 1.344 2019/09/03 08:34:19 djm Exp $ */ +/* $OpenBSD: ssh-keygen.c,v 1.345 2019/09/03 08:35:27 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -2659,10 +2659,10 @@ verify(const char *signature, const char *sig_namespace, const char *principal, fp = NULL; if (revoked_keys != NULL) { - if ((r = sshkey_check_revoked(sign_key, revoked_keys)) != 0) { - debug3("sshkey_check_revoked failed: %s", ssh_err(r)); - goto done; - } + if ((r = sshkey_check_revoked(sign_key, revoked_keys)) != 0) { + debug3("sshkey_check_revoked failed: %s", ssh_err(r)); + goto done; + } } if ((r = sshsig_check_allowed_keys(allowed_keys, sign_key, |