diff options
author | Geoff Thorpe <geoff@openssl.org> | 2008-03-16 22:05:46 +0100 |
---|---|---|
committer | Geoff Thorpe <geoff@openssl.org> | 2008-03-16 22:05:46 +0100 |
commit | 1e26a8baedbc74036ada80deb16296e7d4eedb18 (patch) | |
tree | 180306f9b8f5bf8b17e166d32b4360ca9a7ec631 /crypto/evp/e_rc2.c | |
parent | Fix some warnings. (diff) | |
download | openssl-1e26a8baedbc74036ada80deb16296e7d4eedb18.tar.xz openssl-1e26a8baedbc74036ada80deb16296e7d4eedb18.zip |
Fix a variety of warnings generated by some elevated compiler-fascism,
OPENSSL_NO_DEPRECATED, etc. Steve, please double-check the CMS stuff...
Diffstat (limited to 'crypto/evp/e_rc2.c')
-rw-r--r-- | crypto/evp/e_rc2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/evp/e_rc2.c b/crypto/evp/e_rc2.c index 4fd8c41bcc..f78d781129 100644 --- a/crypto/evp/e_rc2.c +++ b/crypto/evp/e_rc2.c @@ -223,7 +223,7 @@ static int rc2_ctrl(EVP_CIPHER_CTX *c, int type, int arg, void *ptr) return 1; } return 0; -#if PBE_PRF_TEST +#ifdef PBE_PRF_TEST case EVP_CTRL_PBE_PRF_NID: *(int *)ptr = NID_hmacWithMD5; return 1; |