ChangeSet ID: 21277 CVSROOT: /opt/cvs-commit Module name: wine Changes by: julliard@winehq.org 2005/11/15 10:51:28
Modified files: dlls/kernel : comm.c
Log message: Cihan Altinay cihan@uq.edu.au Disable PARMRK input flag of serial ports.
Patch: http://cvs.winehq.org/patch.py?id=21277
Old revision New revision Changes Path 1.100 1.101 +2 -2 wine/dlls/kernel/comm.c
Index: wine/dlls/kernel/comm.c diff -u -p wine/dlls/kernel/comm.c:1.100 wine/dlls/kernel/comm.c:1.101 --- wine/dlls/kernel/comm.c:1.100 15 Nov 2005 16:51:28 -0000 +++ wine/dlls/kernel/comm.c 15 Nov 2005 16:51:28 -0000 @@ -1101,9 +1101,9 @@ BOOL WINAPI SetCommState( port.c_cc[VTIME] = 1;
#ifdef IMAXBEL - port.c_iflag &= ~(ISTRIP|BRKINT|IGNCR|ICRNL|INLCR|IMAXBEL); + port.c_iflag &= ~(ISTRIP|BRKINT|IGNCR|ICRNL|INLCR|PARMRK|IMAXBEL); #else - port.c_iflag &= ~(ISTRIP|BRKINT|IGNCR|ICRNL|INLCR); + port.c_iflag &= ~(ISTRIP|BRKINT|IGNCR|ICRNL|INLCR|PARMRK); #endif port.c_iflag |= (IGNBRK);