]> granicus.if.org Git - pdns/commitdiff
dnsdist: Fix a typo in the documentation of NetmaskGroup:addMasks()
authorRemi Gacogne <remi.gacogne@powerdns.com>
Thu, 1 Jun 2017 08:53:25 +0000 (10:53 +0200)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Thu, 1 Jun 2017 08:53:25 +0000 (10:53 +0200)
pdns/README-dnsdist.md
pdns/dnsdist-lua2.cc

index 7a905e3d1ed42f8e8a06d4b4d9cba78f73e33de6..c5a79312d688dc173298dfb6cdb84aad77198923 100644 (file)
@@ -1603,7 +1603,7 @@ instantiate a server with additional parameters
     * NetmaskGroup related
         * function `newNMG()`: returns a NetmaskGroup
         * member `addMask(mask)`: adds `mask` to the NetmaskGroup. Prefix with `!` to exclude this mask from matching.
-        * member `addMask(table)`: adds the keys of `table` to the NetmaskGroup. `table` should be a table whose keys
+        * member `addMasks(table)`: adds the keys of `table` to the NetmaskGroup. `table` should be a table whose keys
         are `ComboAddress` objects and values are integers, as returned by `exceed*` functions
         * member `match(ComboAddress)`: checks if ComboAddress is matched by this NetmaskGroup
         * member `clear()`: clears the NetmaskGroup
index a07632e8daade1b7ca1e78fd6ef0ee29975e1001..3f31e2bee50041e0da1945db837c00a34fbbafc6 100644 (file)
@@ -209,7 +209,7 @@ void moreLua(bool client)
                          {
                            nmg.addMask(mask);
                          });
-    g_lua.registerFunction<void(NetmaskGroup::*)(const std::map<ComboAddress,int>& map)>("addMasks", [](NetmaskGroup&nmg, const std::map<ComboAddress,int>& map)
+  g_lua.registerFunction<void(NetmaskGroup::*)(const std::map<ComboAddress,int>& map)>("addMasks", [](NetmaskGroup&nmg, const std::map<ComboAddress,int>& map)
                          {
                            for (const auto& entry : map) {
                              nmg.addMask(Netmask(entry.first));