From: djm@openbsd.org Date: Wed, 8 Sep 2021 03:23:44 +0000 (+0000) Subject: upstream: correct my mistake in previous fix; spotted by halex X-Git-Tag: V_8_8_P1~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4afe431da98ec1cf6a2933fe5658f4fd68dee9e2;p=thirdparty%2Fopenssh-portable.git upstream: correct my mistake in previous fix; spotted by halex OpenBSD-Commit-ID: 3cc62d92e3f70006bf02468fc146bfc36fffa183 --- diff --git a/ssh-keygen.c b/ssh-keygen.c index cf5d95af7..4b40768d5 100644 --- a/ssh-keygen.c +++ b/ssh-keygen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keygen.c,v 1.436 2021/09/07 06:03:51 djm Exp $ */ +/* $OpenBSD: ssh-keygen.c,v 1.437 2021/09/08 03:23:44 djm Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1994 Tatu Ylonen , Espoo, Finland @@ -2680,7 +2680,7 @@ sig_process_opts(char * const *opts, size_t nopts, uint64_t *verify_timep, time_t now; *verify_timep = 0; - if (print_pubkey == NULL) + if (print_pubkey != NULL) *print_pubkey = 0; for (i = 0; i < nopts; i++) { if (strncasecmp(opts[i], "verify-time=", 12) == 0) {