From: Alex Rousskov Date: Wed, 2 Jan 2013 18:57:34 +0000 (-0700) Subject: Fixed SMP cache manager request handling. X-Git-Tag: SQUID_3_5_0_1~444^2~91 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1129b8c3343aa24197c129cdebb492b3944b535d;p=thirdparty%2Fsquid.git Fixed SMP cache manager request handling. Same as trunk r12564. --- diff --git a/src/mgr/ActionParams.cc b/src/mgr/ActionParams.cc index 75d48aed4b..fa71307f24 100644 --- a/src/mgr/ActionParams.cc +++ b/src/mgr/ActionParams.cc @@ -16,8 +16,6 @@ Mgr::ActionParams::ActionParams(const Ipc::TypedMsgHdr &msg) { msg.getString(httpUri); - const int m = msg.getInt(); - Must(Http::METHOD_NONE <= m && m < Http::METHOD_ENUM_END); String method; msg.getString(method); httpMethod = HttpRequestMethod(method.termedBuf(), NULL);