ENGINE support has not been put into dsaparam, so these declarations seem
authorGeoff Thorpe <geoff@openssl.org>
Thu, 15 Nov 2001 01:58:32 +0000 (01:58 +0000)
committerGeoff Thorpe <geoff@openssl.org>
Thu, 15 Nov 2001 01:58:32 +0000 (01:58 +0000)
to be pointless.

apps/dsaparam.c

index 34230b2cfb4217d07af57d59ef621d09620a960f..4e8dcd3a68fd5fe2d7e0b7a3a886fed87ac902f1 100644 (file)
@@ -69,7 +69,6 @@
 #include <openssl/dsa.h>
 #include <openssl/x509.h>
 #include <openssl/pem.h>
-#include <openssl/engine.h>
 
 #undef PROG
 #define PROG   dsaparam_main
@@ -91,12 +90,11 @@ int MAIN(int, char **);
 
 int MAIN(int argc, char **argv)
        {
-       ENGINE *e = NULL;
        DSA *dsa=NULL;
        int i,badops=0,text=0;
        BIO *in=NULL,*out=NULL;
        int informat,outformat,noout=0,C=0,ret=1;
-       char *infile,*outfile,*prog,*inrand=NULL,*engine=NULL;
+       char *infile,*outfile,*prog,*inrand=NULL;
        int numbits= -1,num,genkey=0;
        int need_rand=0;