Couple of bits missing from the command-line help.
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Fri, 23 Jan 2004 13:21:17 +0000 (13:21 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Fri, 23 Jan 2004 13:21:17 +0000 (13:21 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/putty@3765 cda61777-01e9-0310-a592-d414129be87e

cmdgen.c

index f845c62..5e9d2d6 100644 (file)
--- 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"