From: djm@openbsd.org Date: Mon, 18 Nov 2019 01:59:48 +0000 (+0000) Subject: upstream: missing break in getopt switch; spotted by Sebastian Kinne X-Git-Tag: V_8_2_P1~282 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=103c51fd5f5ddc01cd6b5c1132e711765b921bf5;p=thirdparty%2Fopenssh-portable.git upstream: missing break in getopt switch; spotted by Sebastian Kinne OpenBSD-Commit-ID: f002dbf14dba5586e8407e90f0141148ade8e8fc --- diff --git a/ssh-keygen.c b/ssh-keygen.c index 4cc70370c..bf73d575f 100644 --- a/ssh-keygen.c +++ b/ssh-keygen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keygen.c,v 1.364 2019/11/14 21:27:30 djm Exp $ */ +/* $OpenBSD: ssh-keygen.c,v 1.365 2019/11/18 01:59:48 djm Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1994 Tatu Ylonen , Espoo, Finland @@ -2994,6 +2994,7 @@ main(int argc, char **argv) break; case 'Y': sign_op = optarg; + break; case 'w': sk_provider = optarg; break;