summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-keygen.c
diff options
context:
space:
mode:
authordjm <djm@openbsd.org>2019-11-18 01:59:48 +0000
committerdjm <djm@openbsd.org>2019-11-18 01:59:48 +0000
commit847074b14be9117e004e22e6330d2abe194c84b8 (patch)
treed8ce95a569c7b579ee137902ed94f30bf97079c0 /usr.bin/ssh/ssh-keygen.c
parentChange tls13_record_layer_phh() to take a CBS as this avoids ownership (diff)
downloadwireguard-openbsd-847074b14be9117e004e22e6330d2abe194c84b8.tar.xz
wireguard-openbsd-847074b14be9117e004e22e6330d2abe194c84b8.zip
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;