Dont' assume that something starting with '-' is a filename --

"openssl gendsa -help" now prints the usage summary, not error
messages that now file -help was found.
This commit is contained in:
Bodo Möller 1999-08-06 11:18:44 +00:00
parent b1816a0408
commit e42979f2c5

View File

@ -118,7 +118,7 @@ int MAIN(int argc, char **argv)
else if (strcmp(*argv,"-idea") == 0) else if (strcmp(*argv,"-idea") == 0)
enc=EVP_idea_cbc(); enc=EVP_idea_cbc();
#endif #endif
else if (dsaparams == NULL) else if (**argv != '-' && dsaparams == NULL)
{ {
dsaparams = *argv; dsaparams = *argv;
} }