summaryrefslogtreecommitdiff
path: root/bin/ksh/c_sh.c
diff options
context:
space:
mode:
authormmcc <mmcc@cvs.openbsd.org>2015-12-14 06:09:44 +0000
committermmcc <mmcc@cvs.openbsd.org>2015-12-14 06:09:44 +0000
commitf416a12007781d2f22f7339818bc899654e1dea1 (patch)
tree5feb84e46f235e15a98bb2303d19114b5adb18b3 /bin/ksh/c_sh.c
parente6ac9718e80ed1b670cb2e434c5ae19ec15ea631 (diff)
Remove a superfluous macro. No binary change. ok tb@
Diffstat (limited to 'bin/ksh/c_sh.c')
-rw-r--r--bin/ksh/c_sh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ksh/c_sh.c b/bin/ksh/c_sh.c
index 6ac00e851f2..f1574543ae9 100644
--- a/bin/ksh/c_sh.c
+++ b/bin/ksh/c_sh.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: c_sh.c,v 1.55 2015/11/12 04:04:31 mmcc Exp $ */
+/* $OpenBSD: c_sh.c,v 1.56 2015/12/14 06:09:43 mmcc Exp $ */
/*
* built-in Bourne commands
@@ -327,7 +327,7 @@ c_read(char **wp)
if (c == '\0')
continue;
if (c == EOF && shf_error(shf) &&
- shf_errno(shf) == EINTR) {
+ shf->errno_ == EINTR) {
/* Was the offending signal one that
* would normally kill a process?
* If so, pretend the read was killed.