summaryrefslogtreecommitdiffstats
path: root/nchan.c
diff options
context:
space:
mode:
Diffstat (limited to 'nchan.c')
-rw-r--r--nchan.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/nchan.c b/nchan.c
index d91217e5..77e4ef48 100644
--- a/nchan.c
+++ b/nchan.c
@@ -489,11 +489,10 @@ chan_shutdown_read(Channel *c)
/*
* shutdown(sock, SHUT_READ) may return ENOTCONN if the
* write side has been closed already. (bug on Linux)
+ * HP-UX will return EINVAL.
*/
if (shutdown(c->sock, SHUT_RD) < 0
- && (errno != ENOTCONN
- || c->ostate == CHAN_OUTPUT_OPEN
- || c->ostate == CHAN_OUTPUT_WAIT_DRAIN))
+ && (errno != ENOTCONN && errno != EINVAL))
error("channel %d: chan_shutdown_read: shutdown() failed for fd%d [i%d o%d]: %.100s",
c->self, c->sock, c->istate, c->ostate, strerror(errno));
} else {