aboutsummaryrefslogtreecommitdiff
path: root/test/bio_core_test.c
diff options
context:
space:
mode:
authorIrak Rigia <tarakrigia@gmail.com>2023-04-19 19:38:22 +0530
committerTomas Mraz <tomas@openssl.org>2023-04-21 16:19:11 +0200
commit1e6bd31e58dba0bb5d7f21cf1fe1e0d9e4ee3c30 (patch)
tree67e2fc35dd2e9c022239b6006b66c591898da40c /test/bio_core_test.c
parent23e648962e04af132c0841bec950b8a89b87fb2d (diff)
downloadopenssl-1e6bd31e58dba0bb5d7f21cf1fe1e0d9e4ee3c30.zip
openssl-1e6bd31e58dba0bb5d7f21cf1fe1e0d9e4ee3c30.tar.gz
openssl-1e6bd31e58dba0bb5d7f21cf1fe1e0d9e4ee3c30.tar.bz2
Replaced '{ 0, NULL }' with OSSL_DISPATCH_END in OSSL_DISPATCH arrays
Fixes #20710 Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20745)
Diffstat (limited to 'test/bio_core_test.c')
-rw-r--r--test/bio_core_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bio_core_test.c b/test/bio_core_test.c
index 77e8467..e3d6625 100644
--- a/test/bio_core_test.c
+++ b/test/bio_core_test.c
@@ -61,7 +61,7 @@ static const OSSL_DISPATCH biocbs[] = {
{ OSSL_FUNC_BIO_CTRL, (void (*)(void))tst_bio_core_ctrl },
{ OSSL_FUNC_BIO_UP_REF, (void (*)(void))tst_bio_core_up_ref },
{ OSSL_FUNC_BIO_FREE, (void (*)(void))tst_bio_core_free },
- { 0, NULL }
+ OSSL_DISPATCH_END
};
static int test_bio_core(void)