summaryrefslogtreecommitdiffstats
path: root/usr.bin/bc/tty.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/bc/tty.c')
-rw-r--r--usr.bin/bc/tty.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/bc/tty.c b/usr.bin/bc/tty.c
index 05f9d14..f5d72fc 100644
--- a/usr.bin/bc/tty.c
+++ b/usr.bin/bc/tty.c
@@ -1,5 +1,5 @@
/* $FreeBSD$ */
-/* $OpenBSD: tty.c,v 1.2 2013/11/12 13:54:51 deraadt Exp $ */
+/* $OpenBSD: tty.c,v 1.3 2015/09/05 09:49:24 jsg Exp $ */
/*
* Copyright (c) 2013, Otto Moerbeek <otto@drijf.net>
@@ -30,7 +30,7 @@ settty(struct termios *t)
{
int ret;
- while ((ret = tcsetattr(0, TCSADRAIN, t) == -1) && errno == EINTR)
+ while ((ret = tcsetattr(0, TCSADRAIN, t)) == -1 && errno == EINTR)
continue;
return ret;
}
@@ -40,7 +40,7 @@ gettty(struct termios *t)
{
int ret;
- while ((ret = tcgetattr(0, t) == -1) && errno == EINTR)
+ while ((ret = tcgetattr(0, t)) == -1 && errno == EINTR)
continue;
return ret;
}
OpenPOWER on IntegriCloud