Software /
code /
prosody-modules
Changeset
950:bea0ef13575c
mod_firewall/actions: Remove unused extra argument.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 03 Apr 2013 19:42:04 +0200 |
parents | 949:b729414b4bf1 |
children | 951:ef54ae817689 |
files | mod_firewall/actions.lib.lua |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_firewall/actions.lib.lua Wed Apr 03 19:41:00 2013 +0200 +++ b/mod_firewall/actions.lib.lua Wed Apr 03 19:42:04 2013 +0200 @@ -135,11 +135,11 @@ end function action_handlers.REDIRECT(where) - return route_modify("clone(stanza)", where, true, true); + return route_modify("clone(stanza)", where, true); end function action_handlers.COPY(where) - return route_modify("clone(stanza)", where, true, false); + return route_modify("clone(stanza)", where, false); end function action_handlers.LOG(string)