From 1419e8d324862f362ccc7607788ecabf7ddaba2b Mon Sep 17 00:00:00 2001 From: Mike Yuan Date: Sat, 20 Sep 2025 00:42:43 +0200 Subject: [PATCH] core/exec-credential: don't enable graceful for load_credential() Follow-up for 4be269563db777bb30f2609b3d4f5180fe9e2d2a This contradicts the logic described in commit msg. --- src/core/exec-credential.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/exec-credential.c b/src/core/exec-credential.c index c890a2c48a3..5fb49899fd1 100644 --- a/src/core/exec-credential.c +++ b/src/core/exec-credential.c @@ -739,7 +739,7 @@ static int load_credential( if (r < 0) return log_debug_errno(r, "Failed to read credential '%s': %m", path); - return maybe_decrypt_and_write_credential(args, id, data, size, /* graceful= */ true); + return maybe_decrypt_and_write_credential(args, id, data, size, /* graceful= */ false); } static int load_cred_recurse_dir_cb( -- 2.47.3