mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-31 01:35:11 +02:00
- 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.
This commit is contained in:
parent
393920745f
commit
0f8536da23
@ -4,6 +4,11 @@
|
|||||||
[sftp-client.c]
|
[sftp-client.c]
|
||||||
fix memory leak in error path in do_readdir(); pointed out by
|
fix memory leak in error path in do_readdir(); pointed out by
|
||||||
Loganaden Velvindron @ AfriNIC in bz#2163
|
Loganaden Velvindron @ AfriNIC in bz#2163
|
||||||
|
- 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.
|
||||||
|
|
||||||
20131205
|
20131205
|
||||||
- (djm) OpenBSD CVS Sync
|
- (djm) OpenBSD CVS Sync
|
||||||
|
@ -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>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
* Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
@ -2225,8 +2225,9 @@ main(int argc, char **argv)
|
|||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Remaining characters: EUYZdow */
|
||||||
while ((opt = getopt(argc, argv, "ABHLQXceghiklpquvxy"
|
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) {
|
switch (opt) {
|
||||||
case 'A':
|
case 'A':
|
||||||
gen_all_hostkeys = 1;
|
gen_all_hostkeys = 1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user