diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-12-17 01:35:50 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-12-17 01:35:50 +0000 |
commit | ea9a0495b7b45d3c21ceb9bb7254f42826cc6a35 (patch) | |
tree | 038061d38a9d4006f3688eb5d9b6f24ad41ebc10 /contrib | |
parent | ba9cae9b9083ea6b4d1fe3d9431ceabdbea5479f (diff) |
contrib/fwd: generic drop target belongs into the drop chain
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/fwd/src/fwd_rules.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/fwd/src/fwd_rules.c b/contrib/fwd/src/fwd_rules.c index 300939d7f..6708e55cb 100644 --- a/contrib/fwd/src/fwd_rules.c +++ b/contrib/fwd/src/fwd_rules.c @@ -225,9 +225,9 @@ static void fwd_r_handle_drop(struct iptc_handle *h) /* common drop rule */ if( (r = fwd_xt_init_rule(h)) != NULL ) { - /* -j DROP; -A handle_reject */ + /* -j DROP; -A handle_drop */ fwd_xt_get_target(r, "DROP"); - fwd_xt_append_rule(r, "handle_reject"); + fwd_xt_append_rule(r, "handle_drop"); } } |