17aa40
From 858519383fec2b3fadc1b8423214f703d69d6a6c Mon Sep 17 00:00:00 2001
17aa40
From: Lennart Poettering <lennart@poettering.net>
17aa40
Date: Wed, 22 Apr 2020 21:52:22 +0200
17aa40
Subject: [PATCH] core: make sure we don't get confused when setting TERM for a
17aa40
 tty fd
17aa40
17aa40
Fixes: #15344
17aa40
(cherry picked from commit e8cf09b2a2ad0d48e5493050d54251d5f512d9b6)
17aa40
17aa40
Resolves: #2045307
17aa40
---
17aa40
 src/core/execute.c | 9 +++++----
17aa40
 1 file changed, 5 insertions(+), 4 deletions(-)
17aa40
17aa40
diff --git a/src/core/execute.c b/src/core/execute.c
17aa40
index d528d08830..a104294966 100644
17aa40
--- a/src/core/execute.c
17aa40
+++ b/src/core/execute.c
17aa40
@@ -1709,12 +1709,13 @@ static int build_environment(
17aa40
 
17aa40
                 tty_path = exec_context_tty_path(c);
17aa40
 
17aa40
-                /* If we are forked off PID 1 and we are supposed to operate on /dev/console, then let's try to inherit
17aa40
-                 * the $TERM set for PID 1. This is useful for containers so that the $TERM the container manager
17aa40
-                 * passes to PID 1 ends up all the way in the console login shown. */
17aa40
+                /* If we are forked off PID 1 and we are supposed to operate on /dev/console, then let's try
17aa40
+                 * to inherit the $TERM set for PID 1. This is useful for containers so that the $TERM the
17aa40
+                 * container manager passes to PID 1 ends up all the way in the console login shown. */
17aa40
 
17aa40
-                if (path_equal(tty_path, "/dev/console") && getppid() == 1)
17aa40
+                if (path_equal_ptr(tty_path, "/dev/console") && getppid() == 1)
17aa40
                         term = getenv("TERM");
17aa40
+
17aa40
                 if (!term)
17aa40
                         term = default_term_for_tty(tty_path);
17aa40