From: hno <> Date: Sun, 8 Sep 2002 05:11:04 +0000 (+0000) Subject: And yet another.. that's one error per line. Some kind of a personal record X-Git-Tag: SQUID_3_0_PRE1~768 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d2bd2b5a6821f47a81193dfc530d8fd2dee2b5d;p=thirdparty%2Fsquid.git And yet another.. that's one error per line. Some kind of a personal record I think. --- diff --git a/src/helper.cc b/src/helper.cc index 0dfcb9649a..ed1c10df23 100644 --- a/src/helper.cc +++ b/src/helper.cc @@ -1,6 +1,6 @@ /* - * $Id: helper.cc,v 1.45 2002/09/07 23:04:50 hno Exp $ + * $Id: helper.cc,v 1.46 2002/09/07 23:11:04 hno Exp $ * * DEBUG: section 84 Helper process maintenance * AUTHOR: Harvest Derived? @@ -104,6 +104,7 @@ helperOpenServers(helper * hlp) } hlp->n_running++; srv = cbdataAlloc(helper_server); + srv->pid = x; srv->flags.alive = 1; srv->index = k; srv->rfd = rfd; diff --git a/src/structs.h b/src/structs.h index ec5c190db4..24257d945b 100644 --- a/src/structs.h +++ b/src/structs.h @@ -1,6 +1,6 @@ /* - * $Id: structs.h,v 1.426 2002/09/01 13:46:56 hno Exp $ + * $Id: structs.h,v 1.427 2002/09/07 23:11:04 hno Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -2035,6 +2035,7 @@ struct _helper_stateful { struct _helper_server { int index; + int pid; int rfd; int wfd; char *buf;