# HG changeset patch # User Kim Alvefur # Date 1365010924 -7200 # Node ID bea0ef13575c6df6215ee783ad96f7b56079e1e3 # Parent b729414b4bf1e545e0c37c3b4dbb0c4bd9da6e79 mod_firewall/actions: Remove unused extra argument. diff -r b729414b4bf1 -r bea0ef13575c mod_firewall/actions.lib.lua --- 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)