diff options
author | Ben Laurie <ben@openssl.org> | 2010-06-12 16:13:23 +0200 |
---|---|---|
committer | Ben Laurie <ben@openssl.org> | 2010-06-12 16:13:23 +0200 |
commit | c8bbd98a2b0c2a5164c42f951cd2866512839b5a (patch) | |
tree | fe50b2de26e0f563ce0b21b88d80da407dbc7999 /apps/ec.c | |
parent | VC-32.pl: fix /Fd name generation. (diff) | |
download | openssl-c8bbd98a2b0c2a5164c42f951cd2866512839b5a.tar.xz openssl-c8bbd98a2b0c2a5164c42f951cd2866512839b5a.zip |
Fix warnings.
Diffstat (limited to 'apps/ec.c')
-rw-r--r-- | apps/ec.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -85,9 +85,6 @@ int MAIN(int, char **); int MAIN(int argc, char **argv) { -#ifndef OPENSSL_NO_ENGINE - ENGINE *e = NULL; -#endif int ret = 1; EC_KEY *eckey = NULL; const EC_GROUP *group; @@ -254,7 +251,7 @@ bad: ERR_load_crypto_strings(); #ifndef OPENSSL_NO_ENGINE - e = setup_engine(bio_err, engine, 0); + setup_engine(bio_err, engine, 0); #endif if(!app_passwd(bio_err, passargin, passargout, &passin, &passout)) |