From: Yu Watanabe Date: Wed, 1 Jul 2026 18:38:03 +0000 (+0900) Subject: crypto-util: drop redundant logs X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f63cc9af18dc10440b79d3b093c5c10b89fb36af;p=thirdparty%2Fsystemd.git crypto-util: drop redundant logs The called functions already log errors internally. --- diff --git a/src/shared/crypto-util.c b/src/shared/crypto-util.c index 60e2730bc7e..b3f714acbca 100644 --- a/src/shared/crypto-util.c +++ b/src/shared/crypto-util.c @@ -2216,7 +2216,7 @@ int openssl_load_private_key( _cleanup_(openssl_ask_password_ui_freep) OpenSSLAskPasswordUI *ui = NULL; r = openssl_ask_password_ui_new(request, &ui); if (r < 0) - return log_debug_errno(r, "Failed to allocate ask-password user interface: %m"); + return r; UI_METHOD *ui_method = NULL; #ifndef OPENSSL_NO_UI_CONSOLE @@ -2235,11 +2235,7 @@ int openssl_load_private_key( assert_not_reached(); } if (r < 0) - return log_debug_errno( - r, - "Failed to load key '%s' from OpenSSL private key source %s: %m", - private_key, - private_key_source); + return r; *ret_user_interface = TAKE_PTR(ui); }