[ssh-keygen.c]
     add -B flag to usage
This commit is contained in:
Ben Lindstrom 2001-03-22 02:05:32 +00:00
parent 57f82e260b
commit f1107f5ede
2 changed files with 6 additions and 3 deletions

View File

@ -17,6 +17,9 @@
- markus@cvs.openbsd.org 2001/03/21 11:43:45
[auth1.c auth2.c session.c session.h]
merge common ssh v1/2 code
- jakob@cvs.openbsd.org 2001/03/21 14:20:45
[ssh-keygen.c]
add -B flag to usage
20010321
- (djm) Fix ttyname breakage for AIX and Tru64. Patch from Steve
@ -4676,4 +4679,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.1006 2001/03/22 02:04:08 mouring Exp $
$Id: ChangeLog,v 1.1007 2001/03/22 02:05:32 mouring Exp $

View File

@ -12,7 +12,7 @@
*/
#include "includes.h"
RCSID("$OpenBSD: ssh-keygen.c,v 1.50 2001/03/12 22:02:02 markus Exp $");
RCSID("$OpenBSD: ssh-keygen.c,v 1.51 2001/03/21 14:20:45 jakob Exp $");
#include <openssl/evp.h>
#include <openssl/pem.h>
@ -616,7 +616,7 @@ do_change_comment(struct passwd *pw)
void
usage(void)
{
printf("Usage: %s [-lpqxXyc] [-t type] [-b bits] [-f file] [-C comment] "
printf("Usage: %s [-lBpqxXyc] [-t type] [-b bits] [-f file] [-C comment] "
"[-N new-pass] [-P pass]\n", __progname);
exit(1);
}