X-Git-Url: http://www.dolda2000.com/gitweb/?p=ashd.git;a=blobdiff_plain;f=lib%2Fcf.c;h=ba63999eba44303f36905866281335dbce7159c7;hp=86658f87ccb424f1bfec1776045d58788c143ca0;hb=45b19d96212b690e1abaf0693285a1888c923470;hpb=fc35a3ef51b6f8a2735001b667dac63ae9154ed9 diff --git a/lib/cf.c b/lib/cf.c index 86658f8..ba63999 100644 --- a/lib/cf.c +++ b/lib/cf.c @@ -306,20 +306,22 @@ static struct chandler stdhandler = { static int stdhandle(struct child *ch, struct hthead *req, int fd, void (*chinit)(void *), void *idata) { struct stdchild *i = ch->pdata; + int serr; if(i->type == CH_SOCKET) { if(i->fd < 0) i->fd = stdmkchild(i->argv, chinit, idata); if(sendreq2(i->fd, req, fd, MSG_NOSIGNAL | MSG_DONTWAIT)) { - if((errno == EPIPE) || (errno == ECONNRESET)) { + serr = errno; + if((serr == EPIPE) || (serr == ECONNRESET)) { /* Assume that the child has crashed and restart it. */ close(i->fd); i->fd = stdmkchild(i->argv, chinit, idata); if(!sendreq2(i->fd, req, fd, MSG_NOSIGNAL | MSG_DONTWAIT)) return(0); } - flog(LOG_ERR, "could not pass on request to child %s: %s", ch->name, strerror(errno)); - if(errno != EAGAIN) { + flog(LOG_ERR, "could not pass on request to child %s: %s", ch->name, strerror(serr)); + if(serr != EAGAIN) { close(i->fd); i->fd = -1; }