summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/ssh-keygen.c
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2019-11-18 01:59:49 +0000
committerDamien Miller <djm@cvs.openbsd.org>2019-11-18 01:59:49 +0000
commit71acf91131724ebc993f13597c645b034cf0027d (patch)
treec5c957e7933bfb10fc2765011ab5f8aa41d99db2 /usr.bin/ssh/ssh-keygen.c
parent81c5370a61f4adca26d3b54a6178e81b5bfc661c (diff)
missing break in getopt switch; spotted by Sebastian Kinne
Diffstat (limited to 'usr.bin/ssh/ssh-keygen.c')
-rw-r--r--usr.bin/ssh/ssh-keygen.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c
index 8431f1a7552..09fa566ae1d 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.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
@@ -2972,6 +2972,7 @@ main(int argc, char **argv)
break;
case 'Y':
sign_op = optarg;
+ break;
case 'w':
sk_provider = optarg;
break;