From: Tomas Mraz Date: Tue, 10 Jun 2025 18:20:23 +0000 (+0200) Subject: ossl_assert() is in cryptlib.h X-Git-Tag: openssl-3.0.17~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d12294628a09f874c1ce5bd3a7639b0370597764;p=thirdparty%2Fopenssl.git 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) --- 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;