From: naddy@openbsd.org Date: Tue, 3 Sep 2019 20:51:49 +0000 (+0000) Subject: upstream: repair typo and editing mishap X-Git-Tag: V_8_1_P1~71 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f44e5956c7c816f6600f2a47be4d7bb5a8d711d;p=thirdparty%2Fopenssh-portable.git upstream: repair typo and editing mishap OpenBSD-Commit-ID: d125ab720ca71ccf9baf83e08ddc8c12a328597e --- diff --git a/ssh-keygen.c b/ssh-keygen.c index 527cfcf63..7d4f33e46 100644 --- a/ssh-keygen.c +++ b/ssh-keygen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keygen.c,v 1.345 2019/09/03 08:35:27 djm Exp $ */ +/* $OpenBSD: ssh-keygen.c,v 1.346 2019/09/03 20:51:49 naddy Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1994 Tatu Ylonen , Espoo, Finland @@ -2731,7 +2731,7 @@ usage(void) " ssh-keygen -A\n" " ssh-keygen -k -f krl_file [-u] [-s ca_public] [-z version_number]\n" " file ...\n" - " ssh-keygen -Q -f le file ...\n" + " ssh-keygen -Q -f krl_file file ...\n" " ssh-keygen -Y sign -f sign_key -n namespace\n" " ssh-keygen -Y verify -I signer_identity -s signature_file\n" " -n namespace -f allowed_keys [-r revoked_keys]\n"); diff --git a/sshsig.c b/sshsig.c index 3dbdc8505..ab9fe43bc 100644 --- a/sshsig.c +++ b/sshsig.c @@ -134,7 +134,7 @@ sshsig_dearmor(struct sshbuf *sig, struct sshbuf **out) } if ((r = sshbuf_b64tod(buf, b64)) != 0) { - error("Coundn't decode signature: %s", ssh_err(r)); + error("Couldn't decode signature: %s", ssh_err(r)); goto done; }