freebsd-ports/games/fgrun/files/patch-src-run_posix.cxx
Li-Wen Hsu 189357d135 - Update to 1.5.1
PR:		ports/131352
Submitted by:	Kuan-Chung Chiu <buganini AT gmail.com>
2009-03-08 17:49:26 +00:00

20 lines
599 B
C++

--- src/run_posix.cxx.orig 2009-01-25 17:01:58.000000000 +0000
+++ src/run_posix.cxx 2009-03-09 01:08:38.080801315 +0000
@@ -59,7 +59,7 @@
#if defined(HAVE_TERMIOS_H)
struct termios term;
tcgetattr( STDOUT_FILENO, &term );
- term.c_oflag &= ~( OLCUC | ONLCR );
+ term.c_oflag &= ~ONLCR;
pid = pty_fork( &master, 0, &term, 0 );
#else
@@ -171,7 +171,7 @@
#if defined(HAVE_TERMIOS_H)
struct termios term;
tcgetattr( STDOUT_FILENO, &term );
- term.c_oflag &= ~( OLCUC | ONLCR );
+ term.c_oflag &= ~ONLCR;
tsPid = pty_fork( &master, 0, &term, 0 );
#else