diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-02-22 08:03:52 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-02-22 08:03:52 +0000 |
commit | 01ec2d57bfa74a2ca535c80eb999cbc165f3d76c (patch) | |
tree | 97782e6216ca23666adb7602438392601cdc1658 | |
parent | 8fcd47d74d6eb5d246ac29488d19d76af3db12c7 (diff) |
bye bye -d
-rw-r--r-- | usr.bin/ssh/ssh-keygen.1 | 7 | ||||
-rw-r--r-- | usr.bin/ssh/ssh-keygen.c | 4 |
2 files changed, 3 insertions, 8 deletions
diff --git a/usr.bin/ssh/ssh-keygen.1 b/usr.bin/ssh/ssh-keygen.1 index 516e05ed4f1..caaf0b1502a 100644 --- a/usr.bin/ssh/ssh-keygen.1 +++ b/usr.bin/ssh/ssh-keygen.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ssh-keygen.1,v 1.31 2001/02/22 06:43:55 deraadt Exp $ +.\" $OpenBSD: ssh-keygen.1,v 1.32 2001/02/22 08:03:51 deraadt Exp $ .\" .\" -*- nroff -*- .\" @@ -166,11 +166,6 @@ or for protocol version 2. The default is .Dq rsa1 . -.It Fl d -Specifies -.Dq dsa -key type (shortcut for -.Fl t Ar dsa) .It Fl C Ar comment Provides the new comment. .It Fl N Ar new_passphrase diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c index 5b5c71c3007..f245faea2a9 100644 --- a/usr.bin/ssh/ssh-keygen.c +++ b/usr.bin/ssh/ssh-keygen.c @@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-keygen.c,v 1.44 2001/02/22 06:43:55 deraadt Exp $"); +RCSID("$OpenBSD: ssh-keygen.c,v 1.45 2001/02/22 08:03:51 deraadt Exp $"); #include <openssl/evp.h> #include <openssl/pem.h> @@ -601,7 +601,7 @@ do_change_comment(struct passwd *pw) void usage(void) { - printf("Usage: %s [-lpqxXycd] [-t type] [-b bits] [-f file] [-C comment] " + printf("Usage: %s [-lpqxXyc] [-t type] [-b bits] [-f file] [-C comment] " "[-N new-pass] [-P pass]\n", __progname); exit(1); } |