]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
More compile fixes for revo.11508
authorAmos Jeffries <squid3@treenet.co.nz>
Mon, 20 Jun 2011 13:42:38 +0000 (01:42 +1200)
committerAmos Jeffries <squid3@treenet.co.nz>
Mon, 20 Jun 2011 13:42:38 +0000 (01:42 +1200)
src/AclRegs.cc
src/acl/LocalIp.cc

index 8301dfd56fbad036e2c9ccb989eae9ae4df6ea99..ae4faabb4a74d5143d3819980306483b395a392e 100644 (file)
@@ -101,7 +101,7 @@ ACL::Prototype ACLMaxConnection::RegistryProtoype(&ACLMaxConnection::RegistryEnt
 ACLMaxConnection ACLMaxConnection::RegistryEntry_("maxconn");
 ACL::Prototype ACLMethod::RegistryProtoype(&ACLMethod::RegistryEntry_, "method");
 ACLStrategised<HttpRequestMethod> ACLMethod::RegistryEntry_(new ACLMethodData, ACLMethodStrategy::Instance(), "method");
-ACL::Prototype ACLLocatIP::RegistryProtoype(&ACLLocalIP::RegistryEntry_, "localip");
+ACL::Prototype ACLLocalIP::RegistryProtoype(&ACLLocalIP::RegistryEntry_, "localip");
 ACLLocalIP ACLLocalIP::RegistryEntry_;
 ACL::Prototype ACLLocalPort::RegistryProtoype(&ACLLocalPort::RegistryEntry_, "localport");
 ACLStrategised<int> ACLLocalPort::RegistryEntry_(new ACLIntRange, ACLLocalPortStrategy::Instance(), "localport");
index bc5bcfd0e71e6038dbb18b7322a8abde2e50c240..ab04b796eeaf3f620c643ff6cf76f53b7ff5cc41 100644 (file)
@@ -55,5 +55,5 @@ ACLLocalIP::match(ACLChecklist *checklist)
 ACL *
 ACLLocalIP::clone() const
 {
-    return new ACLocalIP(*this);
+    return new ACLLocalIP(*this);
 }