summaryrefslogtreecommitdiff
path: root/ssh-keygen.c
diff options
context:
space:
mode:
authordjm <djm>2013-12-06 23:31:37 +0000
committerdjm <djm>2013-12-06 23:31:37 +0000
commit68e3b47b27c4567058306f50be07d3007e438b5f (patch)
tree688fe39b0312a0e427c8f3d2ba12d86b630df1b0 /ssh-keygen.c
parentf11affb961774ab0a62e7204b111a03bc53334c0 (diff)
downloadopenssh-68e3b47b27c4567058306f50be07d3007e438b5f.tar.gz
- djm@cvs.openbsd.org 2013/12/06 03:40:51
[ssh-keygen.c] remove duplicated character ('g') in getopt() string; document the (few) remaining option characters so we don't have to rummage next time.
Diffstat (limited to 'ssh-keygen.c')
-rw-r--r--ssh-keygen.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ssh-keygen.c b/ssh-keygen.c
index 678dafe8..e5e2f2f6 100644
--- a/ssh-keygen.c
+++ b/ssh-keygen.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh-keygen.c,v 1.235 2013/10/23 04:16:22 djm Exp $ */
+/* $OpenBSD: ssh-keygen.c,v 1.236 2013/12/06 03:40:51 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -2225,8 +2225,9 @@ main(int argc, char **argv)
exit(1);
}
+ /* Remaining characters: EUYZdow */
while ((opt = getopt(argc, argv, "ABHLQXceghiklpquvxy"
- "C:D:F:G:I:J:K:M:N:O:P:R:S:T:V:W:a:b:f:g:j:m:n:r:s:t:z:")) != -1) {
+ "C:D:F:G:I:J:K:M:N:O:P:R:S:T:V:W:a:b:f:j:m:n:r:s:t:z:")) != -1) {
switch (opt) {
case 'A':
gen_all_hostkeys = 1;