Remove warnings about unused symbols when configured with no-rsa.

This commit is contained in:
Richard Levitte 2002-05-22 07:53:53 +00:00
parent 2341e303da
commit 1522c23470

View File

@ -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