[ssh-keygen.c]
     remove -d, documentation removed >10 years ago; ok markus
This commit is contained in:
Damien Miller 2011-05-05 14:13:25 +10:00
parent 4a4d161545
commit 111431963e
2 changed files with 5 additions and 5 deletions

View File

@ -29,6 +29,9 @@
- stevesk@cvs.openbsd.org 2011/03/23 16:24:56 - stevesk@cvs.openbsd.org 2011/03/23 16:24:56
[ssh-keygen.1] [ssh-keygen.1]
-q not used in /etc/rc now so remove statement. -q not used in /etc/rc now so remove statement.
- stevesk@cvs.openbsd.org 2011/03/23 16:50:04
[ssh-keygen.c]
remove -d, documentation removed >10 years ago; ok markus
20110221 20110221
- (dtucker) [contrib/cygwin/ssh-host-config] From Corinna: revamp of the - (dtucker) [contrib/cygwin/ssh-host-config] From Corinna: revamp of the

View File

@ -1,4 +1,4 @@
/* $OpenBSD: ssh-keygen.c,v 1.206 2011/03/23 15:16:22 stevesk Exp $ */ /* $OpenBSD: ssh-keygen.c,v 1.207 2011/03/23 16:50:04 stevesk 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
@ -1955,7 +1955,7 @@ main(int argc, char **argv)
exit(1); exit(1);
} }
while ((opt = getopt(argc, argv, "AdegiqpclBHLhvxXyF:b:f:t:D:I:P:m:N:n:" while ((opt = getopt(argc, argv, "AegiqpclBHLhvxXyF:b:f:t:D:I:P:m:N:n:"
"O:C:r:g:R:T:G:M:S:s:a:V:W:z:")) != -1) { "O:C:r:g:R:T:G:M:S:s:a:V:W:z:")) != -1) {
switch (opt) { switch (opt) {
case 'A': case 'A':
@ -2055,9 +2055,6 @@ main(int argc, char **argv)
case 'y': case 'y':
print_public = 1; print_public = 1;
break; break;
case 'd':
key_type_name = "dsa";
break;
case 's': case 's':
ca_key_path = optarg; ca_key_path = optarg;
break; break;