]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - apps/gendsa.c
Change functions to ANSI C.
[thirdparty/openssl.git] / apps / gendsa.c
index 564a881ae634aeb31b92b5301c0259e85b76ce4c..3e198a24f96055ff58a4cab046f3b811a053b48c 100644 (file)
@@ -79,9 +79,7 @@ static long dsa_load_rand(char *names);
 static long dsa_load_rand();
 #endif
 
-int MAIN(argc, argv)
-int argc;
-char **argv;
+int MAIN(int argc, char **argv)
        {
        char buffer[200];
        DSA *dsa=NULL;
@@ -137,7 +135,7 @@ char **argv;
        if (dsaparams == NULL)
                {
 bad:
-               BIO_printf(bio_err,"usage: gendsa [args] [dsaparams]\n");
+               BIO_printf(bio_err,"usage: gendsa [args] dsaparam-file\n");
                BIO_printf(bio_err," -out file - output the key to 'file'\n");
 #ifndef NO_DES
                BIO_printf(bio_err," -des      - encrypt the generated key with DES in cbc mode\n");
@@ -149,6 +147,8 @@ bad:
                BIO_printf(bio_err," -rand file:file:...\n");
                BIO_printf(bio_err,"           - load the file (or the files in the directory) into\n");
                BIO_printf(bio_err,"             the random number generator\n");
+               BIO_printf(bio_err," dsaparam-file\n");
+               BIO_printf(bio_err,"           - a DSA parameter file as generated by the dsaparam command\n");
                goto end;
                }
 
@@ -212,8 +212,7 @@ end:
        EXIT(ret);
        }
 
-static long dsa_load_rand(name)
-char *name;
+static long dsa_load_rand(char *name)
        {
        char *p,*n;
        int last;