From: Henrik Nordstrom Date: Mon, 3 Aug 2009 13:27:45 +0000 (+0200) Subject: Typo when reducing stateful helpers flags.reserved to a boolean X-Git-Tag: SQUID_3_2_0_1~817 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a8db338924b64bb9b6387819865827169cfc188e;p=thirdparty%2Fsquid.git Typo when reducing stateful helpers flags.reserved to a boolean A lost ! kind of reintroduced Bug #2648 again but different.. sorry. --- diff --git a/src/helper.cc b/src/helper.cc index fe3cda315f..577cdca312 100644 --- a/src/helper.cc +++ b/src/helper.cc @@ -1379,7 +1379,7 @@ helperStatefulServerDone(helper_stateful_server * srv) { if (!srv->flags.shutdown) { helperStatefulKickQueue(srv->parent); - } else if (!srv->flags.closing && srv->flags.reserved && !srv->flags.busy) { + } else if (!srv->flags.closing && !srv->flags.reserved && !srv->flags.busy) { int wfd = srv->wfd; srv->wfd = -1; if (srv->rfd == wfd)