From 9ce7058cd0efc91bc3fa8ca9c899ff85c1b9b850 Mon Sep 17 00:00:00 2001 From: gardners Date: Sat, 5 May 2012 19:10:28 +0930 Subject: [PATCH] ignore ENOTRECOVERABLE? --- monitor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor.c b/monitor.c index 9c6ab646..d528dc9c 100644 --- a/monitor.c +++ b/monitor.c @@ -232,7 +232,7 @@ int monitor_poll() bytes=read(c->socket,&c->line[c->line_length],1); if (bytes<1) { switch(errno) { - case EAGAIN: case EINTR: + case EAGAIN: case EINTR: case ENOTRECOVERABLE: /* transient errors */ break; default: