From: Mike Yuan Date: Fri, 19 Sep 2025 17:35:08 +0000 (+0200) Subject: core/manager: honor show_status_overridden in manager_watch_jobs_next_time() X-Git-Tag: v259-rc1~484 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f8c1de21317818b8968f065435a2afb7cadf645;p=thirdparty%2Fsystemd.git core/manager: honor show_status_overridden in manager_watch_jobs_next_time() Prompted by #39029 --- diff --git a/src/core/manager.c b/src/core/manager.c index cca26281772..520434993f8 100644 --- a/src/core/manager.c +++ b/src/core/manager.c @@ -137,7 +137,7 @@ static usec_t manager_watch_jobs_next_time(Manager *m) { /* Let the user manager without a timeout show status quickly, so the system manager can make * use of it, if it wants to. */ timeout = JOBS_IN_PROGRESS_WAIT_USEC * 2 / 3; - else if (show_status_on(m->show_status)) + else if (manager_get_show_status_on(m)) /* When status is on, just use the usual timeout. */ timeout = JOBS_IN_PROGRESS_WAIT_USEC; else