From dc9972317e6fe44e503fbfe83446272743c76fb3 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 22 May 1996 18:02:38 +0000 Subject: Regenerated: autoconf configure.in --- termios/cfmakeraw.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'termios') diff --git a/termios/cfmakeraw.c b/termios/cfmakeraw.c index 09f630b906..a1f2eb2c74 100644 --- a/termios/cfmakeraw.c +++ b/termios/cfmakeraw.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992 Free Software Foundation, Inc. +/* Copyright (C) 1992, 1996 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -28,6 +28,6 @@ DEFUN(cfmakeraw, (termios_p), struct termios *t) t->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN); t->c_cflag &= ~(CSIZE|PARENB); t->c_cflag |= CS8; - t->c_cc[VMIN] = 0; - /* t->c_cc[VTIME] = ?; */ + t->c_cc[VMIN] = 1; /* read returns when one char is available. */ + t->c_cc[VTIME] = 0; } -- cgit v1.2.3