From a3376fe8fc4db352d79eb3dba8cf1a2a3ac2e238 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Tue, 19 Jun 2001 00:23:47 +0000 Subject: [PATCH] make apps compile again --- apps/dsa.c | 2 +- apps/dsaparam.c | 2 +- apps/gendsa.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/dsa.c b/apps/dsa.c index 4f45edac6b..f18d13da03 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 7ce49d90c3..983cd04329 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 3fdbf37722..57ef0da46d 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"); -- 2.34.1