From 300ec7176bfd66c5fa68d2927da71541409cf304 Mon Sep 17 00:00:00 2001 From: Jonathan Calmels Date: Fri, 8 Jun 2018 16:56:25 -0700 Subject: [PATCH] terminal: enable local output processing Signed-off-by: Jonathan Calmels --- src/lxc/terminal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lxc/terminal.c b/src/lxc/terminal.c index 18714db0b..eb745c5ff 100644 --- a/src/lxc/terminal.c +++ b/src/lxc/terminal.c @@ -509,7 +509,7 @@ int lxc_setup_tios(int fd, struct termios *oldtios) #ifdef IEXTEN newtios.c_lflag &= ~IEXTEN; #endif - newtios.c_oflag &= ~OPOST; + newtios.c_oflag |= OPOST; newtios.c_cc[VMIN] = 1; newtios.c_cc[VTIME] = 0;