summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--monitor_wrap.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/monitor_wrap.c b/monitor_wrap.c
index b379f0555..d39d491c2 100644
--- a/monitor_wrap.c
+++ b/monitor_wrap.c
@@ -153,10 +153,8 @@ mm_request_receive(int sock, Buffer *m)
153 debug3("%s entering", __func__); 153 debug3("%s entering", __func__);
154 154
155 if (atomicio(read, sock, buf, sizeof(buf)) != sizeof(buf)) { 155 if (atomicio(read, sock, buf, sizeof(buf)) != sizeof(buf)) {
156 if (errno == EPIPE) { 156 if (errno == EPIPE)
157 error("%s: socket closed", __func__);
158 cleanup_exit(255); 157 cleanup_exit(255);
159 }
160 fatal("%s: read: %s", __func__, strerror(errno)); 158 fatal("%s: read: %s", __func__, strerror(errno));
161 } 159 }
162 msg_len = get_u32(buf); 160 msg_len = get_u32(buf);