From d12294628a09f874c1ce5bd3a7639b0370597764 Mon Sep 17 00:00:00 2001 From: Tomas Mraz Date: Tue, 10 Jun 2025 20:20:23 +0200 Subject: [PATCH] ossl_assert() is in cryptlib.h In 3.0 the ossl_assert() is in internal/cryptlib.h not internal/common.h Reviewed-by: Neil Horman Reviewed-by: Tim Hudson Reviewed-by: Paul Dale Reviewed-by: Tom Cosgrove (Merged from https://github.com/openssl/openssl/pull/27799) --- providers/implementations/rands/drbg_ctr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/implementations/rands/drbg_ctr.c b/providers/implementations/rands/drbg_ctr.c index 2bc355e0def..8939437ae04 100644 --- a/providers/implementations/rands/drbg_ctr.c +++ b/providers/implementations/rands/drbg_ctr.c @@ -20,7 +20,7 @@ #include "prov/providercommon.h" #include "prov/provider_ctx.h" #include "drbg_local.h" -#include "internal/common.h" +#include "internal/cryptlib.h" static OSSL_FUNC_rand_newctx_fn drbg_ctr_new_wrapper; static OSSL_FUNC_rand_freectx_fn drbg_ctr_free; -- 2.47.2