diff options
author | Ben Laurie <ben@openssl.org> | 2000-01-08 22:06:24 +0100 |
---|---|---|
committer | Ben Laurie <ben@openssl.org> | 2000-01-08 22:06:24 +0100 |
commit | 752d706aaf651ce87368bc826a3035a6a4f31190 (patch) | |
tree | aee963771a74b435db3cac890768367920737602 /crypto/evp/p_open.c | |
parent | Add -prexit command to s_client and patch some BIO (diff) | |
download | openssl-752d706aaf651ce87368bc826a3035a6a4f31190.tar.xz openssl-752d706aaf651ce87368bc826a3035a6a4f31190.zip |
Make NO_RSA compile with pedantic.
Diffstat (limited to 'crypto/evp/p_open.c')
-rw-r--r-- | crypto/evp/p_open.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/evp/p_open.c b/crypto/evp/p_open.c index ddb9fd6942..b9ca7892c2 100644 --- a/crypto/evp/p_open.c +++ b/crypto/evp/p_open.c @@ -110,4 +110,10 @@ int EVP_OpenFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) EVP_DecryptInit(ctx,NULL,NULL,NULL); return(i); } +#else /* !NO_RSA */ + +# ifdef PEDANTIC +static void *dummy=&dummy; +# endif + #endif |