From: djm Date: Fri, 9 Jul 2021 09:55:56 +0000 (+0000) Subject: silence redundant error message; reported by Fabian Stelzer X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=16196a13e16731e07104310490030c82daab2da0;p=openbsd silence redundant error message; reported by Fabian Stelzer --- diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c index eedab58da74..a5cd17b57bb 100644 --- a/usr.bin/ssh/ssh-keygen.c +++ b/usr.bin/ssh/ssh-keygen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keygen.c,v 1.430 2021/07/05 01:16:46 dtucker Exp $ */ +/* $OpenBSD: ssh-keygen.c,v 1.431 2021/07/09 09:55:56 djm Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1994 Tatu Ylonen , Espoo, Finland @@ -2746,7 +2746,8 @@ sig_find_principals(const char *signature, const char *allowed_keys) { } if ((r = sshsig_find_principals(allowed_keys, sign_key, &principals)) != 0) { - error_fr(r, "sshsig_get_principal"); + if (r != SSH_ERR_KEY_NOT_FOUND) + error_fr(r, "sshsig_find_principal"); goto done; } ret = 0;