From a5592a2e004dc5cf0d3e5199bc41f5f712db4e41 Mon Sep 17 00:00:00 2001 From: Mike Yuan Date: Mon, 6 Oct 2025 22:34:42 +0200 Subject: [PATCH] mute-console: honor Context rather than arg_* --- src/mute-console/mute-console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mute-console/mute-console.c b/src/mute-console/mute-console.c index 568b05cbd12..a5bb4cce61a 100644 --- a/src/mute-console/mute-console.c +++ b/src/mute-console/mute-console.c @@ -185,7 +185,7 @@ static int mute_kernel(Context *c) { assert(c); - if (!arg_mute_kernel) { + if (!c->mute_kernel) { log_debug("Muting of kernel printk() console output disabled."); c->saved_kernel = -1; return 0; -- 2.47.3