[openssh-commits] [openssh] 01/01: remove error() accidentally inserted for debugging
git+noreply at mindrot.org
git+noreply at mindrot.org
Fri Mar 20 09:12:34 AEDT 2015
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch V_6_8
in repository openssh.
commit c7fe79ed7db427f1474e72b9f8b465901d61d3f6
Author: Damien Miller <djm at mindrot.org>
Date: Fri Mar 20 09:11:59 2015 +1100
remove error() accidentally inserted for debugging
pointed out by Christian Hesse
---
monitor_wrap.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/monitor_wrap.c b/monitor_wrap.c
index b379f05..d39d491 100644
--- a/monitor_wrap.c
+++ b/monitor_wrap.c
@@ -153,10 +153,8 @@ mm_request_receive(int sock, Buffer *m)
debug3("%s entering", __func__);
if (atomicio(read, sock, buf, sizeof(buf)) != sizeof(buf)) {
- if (errno == EPIPE) {
- error("%s: socket closed", __func__);
+ if (errno == EPIPE)
cleanup_exit(255);
- }
fatal("%s: read: %s", __func__, strerror(errno));
}
msg_len = get_u32(buf);
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list