From: Yu Watanabe Date: Wed, 13 Aug 2025 02:29:36 +0000 (+0900) Subject: core/execute: add one more FIXME comment X-Git-Tag: v258-rc3~45^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d62adb5554c25a495d34234a593d3a20c1922e34;p=thirdparty%2Fsystemd.git core/execute: add one more FIXME comment --- diff --git a/src/core/execute.c b/src/core/execute.c index fa63a6bee05..c384e9dd638 100644 --- a/src/core/execute.c +++ b/src/core/execute.c @@ -1009,6 +1009,9 @@ bool exec_context_shall_ansi_seq_reset(const ExecContext *c) { if (!c->tty_reset) return false; + /* FIXME: + * On invocation, we generate $TERM based on settings for StandardOutput= and friends and the kernel + * command line options, or propagate $TERM from the service manager. See setup_term_environment(). */ return !streq_ptr(strv_env_get(c->environment, "TERM"), "dumb"); }