From: Jo-Philipp Wich Date: Tue, 4 Jun 2013 11:11:53 +0000 (+0200) Subject: Fix wrong signature of fw3_xt_print_matches() X-Git-Url: http://git.archive.openwrt.org/?p=project%2Ffirewall3.git;a=commitdiff_plain;h=5ee2129eaa23a28bfef6d20c273cafc0be559b3d Fix wrong signature of fw3_xt_print_matches() --- diff --git a/xtables-10.h b/xtables-10.h index edd3d3a..aeb67d7 100644 --- a/xtables-10.h +++ b/xtables-10.h @@ -126,7 +126,7 @@ fw3_xt_merge_target_options(struct xtables_globals *g, struct xtables_target *t) } static inline void -fw3_xt_print_matches(void *ip, struct xtables_match **matches) +fw3_xt_print_matches(void *ip, struct xtables_rule_match *matches) { struct xtables_rule_match *rm; struct xtables_match *m; diff --git a/xtables-5.h b/xtables-5.h index 3522500..d7f8572 100644 --- a/xtables-5.h +++ b/xtables-5.h @@ -89,7 +89,7 @@ fw3_xt_merge_target_options(struct xtables_globals *g, struct xtables_target *t) } static inline void -fw3_xt_print_matches(void *ip, struct xtables_match **matches) +fw3_xt_print_matches(void *ip, struct xtables_rule_match *matches) { struct xtables_rule_match *rm; struct xtables_match *m;