From bb51f21728ecc5a2fddc7a9cd9c44972f6e8f4cd Mon Sep 17 00:00:00 2001 From: Geoff Thorpe Date: Fri, 26 May 2000 15:43:28 +0000 Subject: [PATCH] Update the test program to compile and run with the changes I just made to ENGINE_new (and ENGINE_get_struct_size). --- crypto/engine/enginetest.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/crypto/engine/enginetest.c b/crypto/engine/enginetest.c index 2772bde7c..a5a3c47fc 100644 --- a/crypto/engine/enginetest.c +++ b/crypto/engine/enginetest.c @@ -94,16 +94,16 @@ int main(int argc, char *argv[]) ERR_load_crypto_strings(); memset(block, 0, 512 * sizeof(ENGINE *)); - if(((new_h1 = ENGINE_new(NULL)) == NULL) || + if(((new_h1 = ENGINE_new()) == NULL) || !ENGINE_set_id(new_h1, "test_id0") || !ENGINE_set_name(new_h1, "First test item") || - ((new_h2 = ENGINE_new(NULL)) == NULL) || + ((new_h2 = ENGINE_new()) == NULL) || !ENGINE_set_id(new_h2, "test_id1") || !ENGINE_set_name(new_h2, "Second test item") || - ((new_h3 = ENGINE_new(NULL)) == NULL) || + ((new_h3 = ENGINE_new()) == NULL) || !ENGINE_set_id(new_h3, "test_id2") || !ENGINE_set_name(new_h3, "Third test item") || - ((new_h4 = ENGINE_new(NULL)) == NULL) || + ((new_h4 = ENGINE_new()) == NULL) || !ENGINE_set_id(new_h4, "test_id3") || !ENGINE_set_name(new_h4, "Fourth test item")) { @@ -198,7 +198,7 @@ int main(int argc, char *argv[]) id = strdup(buf); sprintf(buf, "Fake engine type %i", loop); name = strdup(buf); - if(((block[loop] = ENGINE_new(NULL)) == NULL) || + if(((block[loop] = ENGINE_new()) == NULL) || !ENGINE_set_id(block[loop], id) || !ENGINE_set_name(block[loop], name)) {