From b888e6b99f0e86a512b472fe5560f9bdb6354485 Mon Sep 17 00:00:00 2001 From: Antonio Alvarez Feijoo Date: Tue, 30 Jun 2026 11:29:10 +0200 Subject: [PATCH] ssl-util: set log level to debug in dlopen_many_sym_or_warn() Otherwise in systems with OpenSSL 3 the journal contains multiple error entries because the preferred library libssl.so.4 is not present. Follow-up for 6caa50183e44b6ef760be4bdbcc98d684c309c5d --- src/shared/ssl-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/ssl-util.c b/src/shared/ssl-util.c index 4b7ab2ec29f..80af61654e2 100644 --- a/src/shared/ssl-util.c +++ b/src/shared/ssl-util.c @@ -44,7 +44,7 @@ int dlopen_libssl(int log_level) { r = dlopen_many_sym_or_warn( &libssl_dl, soname, - log_level, + LOG_DEBUG, DLSYM_ARG(SSL_ctrl), DLSYM_ARG(SSL_CTX_ctrl), DLSYM_ARG(SSL_CTX_free), -- 2.47.3