]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream: missing break in getopt switch; spotted by Sebastian Kinne
authordjm@openbsd.org <djm@openbsd.org>
Mon, 18 Nov 2019 01:59:48 +0000 (01:59 +0000)
committerDamien Miller <djm@mindrot.org>
Mon, 18 Nov 2019 02:00:43 +0000 (13:00 +1100)
OpenBSD-Commit-ID: f002dbf14dba5586e8407e90f0141148ade8e8fc

ssh-keygen.c

index 4cc70370ccbf4fcb02806ea82642dbce8ff512cb..bf73d575f99c9a68d00faaae64bed81b4db8f1a4 100644 (file)
@@ -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 <ylo@cs.hut.fi>
  * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -2994,6 +2994,7 @@ main(int argc, char **argv)
                        break;
                case 'Y':
                        sign_op = optarg;
+                       break;
                case 'w':
                        sk_provider = optarg;
                        break;