From: Richard Levitte Date: Wed, 22 May 2002 07:53:53 +0000 (+0000) Subject: Remove warnings about unused symbols when configured with no-rsa. X-Git-Tag: OpenSSL_0_9_7-beta1~38 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1522c23470e9b3b93d2c5c7e611b060e32ef1121;p=oweals%2Fopenssl.git Remove warnings about unused symbols when configured with no-rsa. --- diff --git a/apps/speed.c b/apps/speed.c index 62cf56e06e..fea0ffe2cf 100644 --- a/apps/speed.c +++ b/apps/speed.c @@ -372,8 +372,11 @@ int MAIN(int argc, char **argv) ENGINE *e = NULL; unsigned char *buf=NULL,*buf2=NULL; int mret=1; - long count=0,save_count=0, rsa_count; + long count=0,save_count=0; int i,j,k; +#if !defined(OPENSSL_NO_RSA) || !defined(OPENSSL_NO_DSA) + long rsa_count; +#endif #ifndef OPENSSL_NO_RSA unsigned rsa_num; #endif