summaryrefslogtreecommitdiffstats
path: root/apps/rsa.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2010-04-06 11:18:32 +0000
committerDr. Stephen Henson <steve@openssl.org>2010-04-06 11:18:32 +0000
commit5b0a79a27aaee29ead5ce2fb4cfb4918e32efe87 (patch)
tree01162917108342c26f96ccc7d51761a0254bcd44 /apps/rsa.c
parent6747de655e215a936f0d5f14072ac8a3e63eea3b (diff)
PR: 2220
Fixes to make OpenSSL compile with no-rc4
Diffstat (limited to 'apps/rsa.c')
-rw-r--r--apps/rsa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/rsa.c b/apps/rsa.c
index b3c8aff7e3..a17708fe9c 100644
--- a/apps/rsa.c
+++ b/apps/rsa.c
@@ -409,7 +409,7 @@ bad:
}
else i=PEM_write_bio_RSAPrivateKey(out,rsa,
enc,NULL,0,NULL,passout);
-#ifndef OPENSSL_NO_DSA
+#if !defined(OPENSSL_NO_DSA) && !defined(OPENSSL_NO_RC4)
} else if (outformat == FORMAT_MSBLOB || outformat == FORMAT_PVK) {
EVP_PKEY *pk;
pk = EVP_PKEY_new();