From: simon Date: Fri, 23 Jan 2004 13:21:17 +0000 (+0000) Subject: Couple of bits missing from the command-line help. X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/136d127a49e26300629181e6bb5eaf74b1f9fdfe?hp=47a6b94c2389f0e2a4f42706818a12369746b713 Couple of bits missing from the command-line help. git-svn-id: svn://svn.tartarus.org/sgt/putty@3765 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/cmdgen.c b/cmdgen.c index f845c626..5e9d2d67 100644 --- a/cmdgen.c +++ b/cmdgen.c @@ -103,7 +103,8 @@ void usage(void) fprintf(stderr, "Usage: puttygen ( keyfile | -t type [ -b bits ] )\n" " [ -C comment ] [ -P ]\n" - " [ -o output-keyfile ] [ -O type ]\n"); + " [ -o output-keyfile ] [ -O type | -l | -L" + " | -p ]\n"); } void help(void) @@ -116,6 +117,7 @@ void help(void) usage(); fprintf(stderr, " -t specify key type when generating (rsa, dsa, rsa1)\n" + " -b specify number of bits when generating key\n" " -C change or specify key comment\n" " -P change key passphrase\n" " -O specify output type:\n" @@ -125,6 +127,7 @@ void help(void) " public standard / ssh.com public key\n" " public-openssh OpenSSH public key\n" " fingerprint output the key fingerprint\n" + " -o specify output file\n" " -l equivalent to `-O fingerprint'\n" " -L equivalent to `-O public-openssh'\n" " -p equivalent to `-O public'\n"