Fix no-rc4.
authorBen Laurie <ben@links.org>
Tue, 22 Mar 2016 02:39:36 +0000 (02:39 +0000)
committerBen Laurie <ben@links.org>
Tue, 22 Mar 2016 11:15:24 +0000 (11:15 +0000)
Reviewed-by: Matt Caswell <matt@openssl.org>
apps/dsa.c

index 79c6fb29b4f1a363e24f69409e3b7f607426212d..ed5bf0175fc53e644009bda1a5a3282bd4da387e 100644 (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);