Fix no-rc4.

Reviewed-by: Matt Caswell <matt@openssl.org>
This commit is contained in:
Ben Laurie 2016-03-22 02:39:36 +00:00
parent f100b0317e
commit 9730043fac
1 changed files with 4 additions and 1 deletions

View File

@ -116,7 +116,10 @@ int dsa_main(int argc, char **argv)
char *passin = NULL, *passout = NULL, *passinarg = NULL, *passoutarg = NULL;
OPTION_CHOICE o;
int informat = FORMAT_PEM, outformat = FORMAT_PEM, text = 0, noout = 0;
int i, modulus = 0, pubin = 0, pubout = 0, pvk_encr = 2, ret = 1;
int i, modulus = 0, pubin = 0, pubout = 0, ret = 1;
# ifndef OPENSSL_NO_RC4
int pvk_encr = 2;
# endif
int private = 0;
prog = opt_init(argc, argv, dsa_options);