]> granicus.if.org Git - pdns/commitdiff
rec: Appease the Gods of spell checking
authorRemi Gacogne <remi.gacogne@powerdns.com>
Fri, 11 Jan 2019 14:27:58 +0000 (15:27 +0100)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Fri, 11 Jan 2019 14:27:58 +0000 (15:27 +0100)
pdns/filterpo.cc

index 75d3cbe554e38f9bc7505a37ea5669ae0b9d8f18..dc7fc5e375777e4fefee5d62044fbc7cf1bdc79a 100644 (file)
@@ -283,9 +283,9 @@ bool DNSFilterEngine::Zone::rmQNameTrigger(const DNSName& n, const Policy& pol)
   }
 
   bool result = false;
-  for (auto& toremove : pol.d_custom) {
+  for (auto& toRemove : pol.d_custom) {
     for (auto it = existing.d_custom.begin(); it != existing.d_custom.end(); ++it) {
-      if (**it == *toremove) {
+      if (**it == *toRemove) {
         existing.d_custom.erase(it);
         result = true;
         break;