From: Alex Rousskov Date: Mon, 21 Mar 2016 04:48:44 +0000 (-0600) Subject: Fixed build broken by r14601: Use trunk, not v3.5 ID for Cache-Control. X-Git-Tag: SQUID_4_0_8~22 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f5beb6009ecb931a48d167b3ac662d90bee0eb02;p=thirdparty%2Fsquid.git Fixed build broken by r14601: Use trunk, not v3.5 ID for Cache-Control. --- diff --git a/src/HttpMsg.cc b/src/HttpMsg.cc index 5e42e4f09d..df95791720 100644 --- a/src/HttpMsg.cc +++ b/src/HttpMsg.cc @@ -42,7 +42,7 @@ HttpMsg::putCc(const HttpHdrCc *otherCc) delete cache_control; cache_control = nullptr; if (!otherCc) - header.delById(HDR_CACHE_CONTROL); + header.delById(Http::HdrType::CACHE_CONTROL); // else it will be deleted inside putCc() below }