diff options
Diffstat (limited to 'openssl/apps/ecparam.c')
-rw-r--r-- | openssl/apps/ecparam.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/openssl/apps/ecparam.c b/openssl/apps/ecparam.c index e9aa0a184..465480bed 100644 --- a/openssl/apps/ecparam.c +++ b/openssl/apps/ecparam.c @@ -129,9 +129,6 @@ int MAIN(int argc, char **argv) char *infile = NULL, *outfile = NULL, *prog; BIO *in = NULL, *out = NULL; int informat, outformat, noout = 0, C = 0, ret = 1; -#ifndef OPENSSL_NO_ENGINE - ENGINE *e = NULL; -#endif char *engine = NULL; BIGNUM *ec_p = NULL, *ec_a = NULL, *ec_b = NULL, @@ -340,7 +337,7 @@ bad: } #ifndef OPENSSL_NO_ENGINE - e = setup_engine(bio_err, engine, 0); + setup_engine(bio_err, engine, 0); #endif if (list_curves) |