From: Fredrik Tolf Date: Sun, 5 Jan 2014 11:15:46 +0000 (+0100) Subject: lib: Don't log mere EAGAINs. X-Git-Url: http://www.dolda2000.com/gitweb/?p=ashd.git;a=commitdiff_plain;h=8240565929c54d87883659f41ceef717bcdfa4b7 lib: Don't log mere EAGAINs. --- diff --git a/lib/cf.c b/lib/cf.c index 1f7be79..5a6388e 100644 --- a/lib/cf.c +++ b/lib/cf.c @@ -388,8 +388,8 @@ static int stdhandle(struct child *ch, struct hthead *req, int fd, void (*chinit return(0); serr = errno; } - flog(LOG_ERR, "could not pass on request to child %s: %s", ch->name, strerror(serr)); if(serr != EAGAIN) { + flog(LOG_ERR, "could not pass on request to child %s: %s", ch->name, strerror(serr)); close(sd->fd); sd->fd = -1; }