From 0a39814e4bfa8044a350d0b13f24a13b61acd6f1 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Tue, 23 Jan 2024 10:57:00 -0700 Subject: [PATCH] Correct a misleading debug message. --- src/exec_pty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exec_pty.c b/src/exec_pty.c index e379149a8..6c0f7583e 100644 --- a/src/exec_pty.c +++ b/src/exec_pty.c @@ -1233,7 +1233,7 @@ exec_pty(struct command_details *details, sudo_fatal("dup"); } else { sudo_debug_printf(SUDO_DEBUG_INFO, - "stderr /dev/tty, creating a pipe"); + "stderr not user's tty, creating a pipe"); if (pipe2(io_pipe[STDERR_FILENO], O_CLOEXEC) != 0) sudo_fatal("%s", U_("unable to create pipe")); io_buf_new(io_pipe[STDERR_FILENO][0], STDERR_FILENO,