Oops, fix typing error in prev. commit

This commit is contained in:
Andrey A. Chernov 1995-03-29 19:24:46 +00:00
parent 668a9ccefc
commit 64a49d2d33

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)tty.c 8.8 (Berkeley) 1/21/94
* $Id: tty.c,v 1.39 1995/03/29 18:55:20 ache Exp $
* $Id: tty.c,v 1.40 1995/03/29 19:22:37 ache Exp $
*/
#include "snp.h"
@ -282,7 +282,7 @@ ttyinput(c, tp)
err = (ISSET(c, TTY_ERRORMASK));
if (err) {
CLR(c, TTY_ERRORMASK);
if (ISSET(err, TTY_BI) { /* Break. */
if (ISSET(err, TTY_BI)) { /* Break. */
if (ISSET(iflag, IGNBRK))
return (0);
else if (ISSET(iflag, BRKINT) &&