mod_firewall/actions: Remove unused extra argument.
authorKim Alvefur <zash@zash.se>
Wed, 03 Apr 2013 19:42:04 +0200
changeset 950 bea0ef13575c
parent 949 b729414b4bf1
child 951 ef54ae817689
mod_firewall/actions: Remove unused extra argument.
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)