diff options
author | 2019-11-18 01:59:48 +0000 | |
---|---|---|
committer | 2019-11-18 01:59:48 +0000 | |
commit | 847074b14be9117e004e22e6330d2abe194c84b8 (patch) | |
tree | d8ce95a569c7b579ee137902ed94f30bf97079c0 /usr.bin/ssh/ssh-keygen.c | |
parent | Change tls13_record_layer_phh() to take a CBS as this avoids ownership (diff) | |
download | wireguard-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.c | 3 |
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; |