Unverified Commit a810dc80 by Christian Brauner Committed by GitHub

Merge pull request #2389 from 3XX0/terminal-output-processing

terminal: enable local output processing
parents 79fcf759 300ec717
...@@ -509,7 +509,7 @@ int lxc_setup_tios(int fd, struct termios *oldtios) ...@@ -509,7 +509,7 @@ int lxc_setup_tios(int fd, struct termios *oldtios)
#ifdef IEXTEN #ifdef IEXTEN
newtios.c_lflag &= ~IEXTEN; newtios.c_lflag &= ~IEXTEN;
#endif #endif
newtios.c_oflag &= ~OPOST; newtios.c_oflag |= OPOST;
newtios.c_cc[VMIN] = 1; newtios.c_cc[VMIN] = 1;
newtios.c_cc[VTIME] = 0; newtios.c_cc[VTIME] = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment