commit f9dac58a3eda2c4c1783f670865ff64dabdb97b7 Author: Jan Engelhardt <jengelh@xxxxxxxxxxxxxxx> Date: Thu Feb 14 02:10:34 2008 +0100 Correct the family member value of libxt_mark revision 1 libxt_mark rev1 used AF_INET6 in the class structure where it should have used AF_INET. --- extensions/libxt_mark.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/extensions/libxt_mark.c b/extensions/libxt_mark.c index 1dfcc58..af7f844 100644 --- a/extensions/libxt_mark.c +++ b/extensions/libxt_mark.c @@ -182,7 +182,7 @@ static struct xtables_match mark_mt_reg = { .version = IPTABLES_VERSION, .name = "mark", .revision = 1, - .family = AF_INET6, + .family = AF_INET, .size = XT_ALIGN(sizeof(struct xt_mark_mtinfo1)), .userspacesize = XT_ALIGN(sizeof(struct xt_mark_mtinfo1)), .help = mark_mt_help, -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html