diff mod_firewall/definitions.lib.lua @ 1863:92602cfac751

mod_firewall: Fix missing import of util.set (used to be global)
author Kim Alvefur <zash@zash.se>
date Fri, 18 Sep 2015 15:27:53 +0200
parents 197af8440ffb
children edec9de0220a
line wrap: on
line diff
--- a/mod_firewall/definitions.lib.lua	Thu Sep 17 20:51:55 2015 +0200
+++ b/mod_firewall/definitions.lib.lua	Fri Sep 18 15:27:53 2015 +0200
@@ -1,6 +1,7 @@
 
 local definition_handlers = {};
 
+local set = require"util.set";
 local new_throttle = require "util.throttle".create;
 
 function definition_handlers.ZONE(zone_name, zone_members)