From: wessels <> Date: Wed, 9 May 2007 21:52:35 +0000 (+0000) Subject: ICAPModXact needs to use the new AUTHUSERREQUESTLOCK() macro X-Git-Tag: SQUID_3_0_PRE6~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=61527519b6e96380f4a7659af078833f0dad4be0;p=thirdparty%2Fsquid.git ICAPModXact needs to use the new AUTHUSERREQUESTLOCK() macro --- diff --git a/src/ICAP/ICAPModXact.cc b/src/ICAP/ICAPModXact.cc index e2c7260d4f..1732e4026f 100644 --- a/src/ICAP/ICAPModXact.cc +++ b/src/ICAP/ICAPModXact.cc @@ -817,7 +817,7 @@ void ICAPModXact::inheritVirginProperties(HttpRequest &newR, const HttpRequest & if (oldR.auth_user_request) { newR.auth_user_request = oldR.auth_user_request; - newR.auth_user_request->lock(); + AUTHUSERREQUESTLOCK(newR.auth_user_request, "newR in ICAPModXact"); } }