Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-05-22 11:53:53 +0400
committerRichard Levitte <levitte@openssl.org>2002-05-22 11:53:53 +0400
commit1522c23470e9b3b93d2c5c7e611b060e32ef1121 (patch)
tree09b2f8d75d0b537243877450bb8a450f351eecc6 /apps
parent2341e303da9e75c931a16ed7f46e7e06cbcf5117 (diff)
Remove warnings about unused symbols when configured with no-rsa.
Diffstat (limited to 'apps')
-rw-r--r--apps/speed.c5
1 files changed, 4 insertions, 1 deletions
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