summaryrefslogtreecommitdiff
path: root/nchan.c
diff options
context:
space:
mode:
authorKevin Steves <stevesk@pobox.com>2001-09-18 16:08:24 +0000
committerKevin Steves <stevesk@pobox.com>2001-09-18 16:08:24 +0000
commit871f662cb64b70e723c3486d872fcb497a0c3f56 (patch)
tree7391610a5293448c51565d32e6f757b4576e4aa1 /nchan.c
parentcc7aafc7a4d59b3f25c511a24b593e73232b7074 (diff)
downloadopenssh-git-871f662cb64b70e723c3486d872fcb497a0c3f56.tar.gz
- (stevesk) nchan.c: we use X/Open Sockets on HP-UX now so shutdown(2)
returns ENOTCONN vs. EINVAL for socket not connected; remove EINVAL check. ok Lutz Jaenicke
Diffstat (limited to 'nchan.c')
-rw-r--r--nchan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nchan.c b/nchan.c
index 43d80bf2..5c18487f 100644
--- a/nchan.c
+++ b/nchan.c
@@ -534,10 +534,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.
+ * HP-UX may return ENOTCONN also.
*/
if (shutdown(c->sock, SHUT_RD) < 0
- && (errno != ENOTCONN && errno != EINVAL))
+ && errno != ENOTCONN)
error("channel %d: chan_shutdown_read: "
"shutdown() failed for fd%d [i%d o%d]: %.100s",
c->self, c->sock, c->istate, c->ostate,