Remove OpenSSL Engine support
The OpenSSL 1.x Engines support has been deprecated in the OpenSSL 3.x and is going to be removed. Remove the OpenSSL Engine support in favor of OpenSSL Providers.
This commit is contained in:
@@ -47,7 +47,7 @@ static int
|
||||
setup_test(void **state) {
|
||||
UNUSED(state);
|
||||
|
||||
dst_lib_init(mctx, NULL);
|
||||
dst_lib_init(mctx);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
@@ -43,7 +43,7 @@ setup_test(void **state) {
|
||||
|
||||
UNUSED(state);
|
||||
|
||||
result = dst_lib_init(mctx, NULL);
|
||||
result = dst_lib_init(mctx);
|
||||
|
||||
if (result != ISC_R_SUCCESS) {
|
||||
return (1);
|
||||
|
||||
@@ -43,7 +43,7 @@ setup_test(void **state) {
|
||||
|
||||
UNUSED(state);
|
||||
|
||||
result = dst_lib_init(mctx, NULL);
|
||||
result = dst_lib_init(mctx);
|
||||
|
||||
if (result != ISC_R_SUCCESS) {
|
||||
return (1);
|
||||
|
||||
@@ -77,7 +77,7 @@ setup_test(void **state) {
|
||||
|
||||
UNUSED(state);
|
||||
|
||||
result = dst_lib_init(mctx, NULL);
|
||||
result = dst_lib_init(mctx);
|
||||
|
||||
if (result != ISC_R_SUCCESS) {
|
||||
return (1);
|
||||
|
||||
@@ -54,7 +54,7 @@ setup_test(void **state) {
|
||||
|
||||
UNUSED(state);
|
||||
|
||||
result = dst_lib_init(mctx, NULL);
|
||||
result = dst_lib_init(mctx);
|
||||
|
||||
if (result != ISC_R_SUCCESS) {
|
||||
return (1);
|
||||
|
||||
Reference in New Issue
Block a user