commit | 00a37b5a9b295c1b55ca9a1c1f207d347ad5b24a | [log] [tgz] |
---|---|---|
author | Dr. Stephen Henson <steve@openssl.org> | Tue Apr 06 11:18:59 2010 +0000 |
committer | Dr. Stephen Henson <steve@openssl.org> | Tue Apr 06 11:18:59 2010 +0000 |
tree | 91ce8cff93b6ced7f9348bc4cc14e7e787fec635 | |
parent | bc494872b8ba6862e59035a643430d764a3a4b2a [diff] [blame] |
PR: 2220 Fixes to make OpenSSL compile with no-rc4
diff --git a/apps/dsa.c b/apps/dsa.c index 1109346..5222487 100644 --- a/apps/dsa.c +++ b/apps/dsa.c
@@ -334,7 +334,7 @@ i=PEM_write_bio_DSA_PUBKEY(out,dsa); else i=PEM_write_bio_DSAPrivateKey(out,dsa,enc, NULL,0,NULL, passout); -#ifndef OPENSSL_NO_RSA +#if !defined(OPENSSL_NO_RSA) && !defined(OPENSSL_NO_RC4) } else if (outformat == FORMAT_MSBLOB || outformat == FORMAT_PVK) { EVP_PKEY *pk; pk = EVP_PKEY_new();