diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-04-22 13:41:03 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-04-22 13:41:03 +0000 |
commit | 6bb8ab8f75dfa78b3c16a105d0ab1df91a118d43 (patch) | |
tree | cc4945ef69630b22445e1751645b1a304b47d8a8 | |
parent | 5ce0ebf213981d02fb638af8126b1644e38c3f02 (diff) |
style, noted by stevesk; sort flags in usage
-rw-r--r-- | usr.bin/ssh/ssh-keygen.1 | 4 | ||||
-rw-r--r-- | usr.bin/ssh/ssh-keygen.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/ssh-keygen.1 b/usr.bin/ssh/ssh-keygen.1 index 55e31de9e1d..e2e4bc45bc5 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.37 2001/04/22 13:25:37 markus Exp $ +.\" $OpenBSD: ssh-keygen.1,v 1.38 2001/04/22 13:41:02 markus Exp $ .\" .\" -*- nroff -*- .\" @@ -157,7 +157,7 @@ This option will read an unencrypted private (or public) key file in SSH2-compatible format and print an OpenSSH compatible private (or public) key to stdout. .Nm -does also read the +also reads the .Sq SECSH Public Key File Format . This option allows importing keys from several commercial SSH implementations. diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c index 539790765d9..60d9edb4022 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.57 2001/04/22 13:25:37 markus Exp $"); +RCSID("$OpenBSD: ssh-keygen.c,v 1.58 2001/04/22 13:41:02 markus Exp $"); #include <openssl/evp.h> #include <openssl/pem.h> @@ -624,7 +624,7 @@ do_change_comment(struct passwd *pw) void usage(void) { - printf("Usage: %s [-lBpqxiec] [-t type] [-b bits] [-f file] [-C comment] " + printf("Usage: %s [-ceilpqyB] [-t type] [-b bits] [-f file] [-C comment] " "[-N new-pass] [-P pass]\n", __progname); exit(1); } |