diff --git a/apps/dsa.c b/apps/dsa.c index 4f45edac6bf4986db85ceca514e8b23ab4162551..f18d13da03ca06a5fe2ebda5190b1530abf2f3bd 100644 --- a/apps/dsa.c +++ b/apps/dsa.c @@ -198,7 +198,7 @@ bad: ERR_load_crypto_strings(); - e = ENGINE_setup(engine, bio_err); + e = setup_engine(bio_err, engine, 0); if(!app_passwd(bio_err, passargin, passargout, &passin, &passout)) { BIO_printf(bio_err, "Error getting passwords\n"); diff --git a/apps/dsaparam.c b/apps/dsaparam.c index 7ce49d90c3658a03c38cd9698120a80c44c5f430..983cd04329aa8682873351fc9ffa96491a312751 100644 --- a/apps/dsaparam.c +++ b/apps/dsaparam.c @@ -232,7 +232,7 @@ bad: } } - e = ENGINE_setup(engine, bio_err); + e = setup_engine(bio_err, engine, 0); if (need_rand) { diff --git a/apps/gendsa.c b/apps/gendsa.c index 3fdbf3772217e22f60b979803adc4b6e3c532046..57ef0da46d99e96dc617538aee588d5b14efec21 100644 --- a/apps/gendsa.c +++ b/apps/gendsa.c @@ -162,7 +162,7 @@ bad: goto end; } - e = ENGINE_setup(engine, bio_err); + e = setup_engine(bio_err, engine, 0); if(!app_passwd(bio_err, NULL, passargout, NULL, &passout)) { BIO_printf(bio_err, "Error getting password\n");