Software /
code /
prosody-modules
Changeset
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 | 1862:3aabb670239d |
children | 1864:991a5f74f848 |
files | mod_firewall/definitions.lib.lua |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
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)