X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=test%2Fshlibloadtest.c;h=07ed40dc6f9c6e041d5809ca21f7bd093180a7e7;hp=ea5044e642a2670a9edefbf95ad51ed79128a34f;hb=cfaad1713e0dd71851aa281c2f1882d9832c90c4;hpb=b71fa7b32d0d80dc1fa5fedf7f0b9a991d746c41 diff --git a/test/shlibloadtest.c b/test/shlibloadtest.c index ea5044e642..07ed40dc6f 100644 --- a/test/shlibloadtest.c +++ b/test/shlibloadtest.c @@ -163,10 +163,10 @@ static int test_lib(void) # define COMPATIBILITY_MASK 0xfff00000L myOpenSSL_version_num = (OpenSSL_version_num_t)symbols[1].func; if (!TEST_int_eq(myOpenSSL_version_num() & COMPATIBILITY_MASK, - OPENSSL_VERSION_NUMBER & COMPATIBILITY_MASK) + OPENSSL_VERSION_NUMBER & COMPATIBILITY_MASK)) goto end; if (!TEST_int_ge(myOpenSSL_version_num() & ~COMPATIBILITY_MASK, - OPENSSL_VERSION_NUMBER & ~COMPATIBILITY_MASK) + OPENSSL_VERSION_NUMBER & ~COMPATIBILITY_MASK)) goto end; if (test_type == DSO_REFTEST) { @@ -190,9 +190,9 @@ static int test_lib(void) { DSO *hndl; /* use known symbol from crypto module */ - if (!TEST_ptr(hndl = DSO_dsobyaddr((void (*)())ERR_get_error, 0))) + if (!TEST_ptr(hndl = myDSO_dsobyaddr((void (*)())ERR_get_error, 0))) goto end; - DSO_free(hndl); + myDSO_free(hndl); } # endif /* DSO_DLFCN */ }