diff mod_firewall/actions.lib.lua @ 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 b729414b4bf1
children 9b21b91c2d96
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)