Set the VTIME to 0; seems to work, which matches theory.

This commit is contained in:
wayn3
2003-05-30 00:00:03 +00:00
parent a6b9141538
commit eb51be352c
+1 -1
View File
@@ -219,7 +219,7 @@ CFontz633_init (Driver * drvthis, char *args)
portset.c_cflag &= ~( CSIZE | PARENB | CRTSCTS );
portset.c_cflag |= CS8 | CREAD | CLOCAL ;
portset.c_cc[VMIN] = 0;
portset.c_cc[VTIME] = 1;
portset.c_cc[VTIME] = 0;
} else {
#ifdef HAVE_CFMAKERAW
/* The easy way */