From 5180032804c03225542368aaaf19060fe7a47a1c Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Thu, 14 Feb 2008 02:10:34 +0100 Subject: 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 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/libxt_mark.c b/extensions/libxt_mark.c index 1dfcc58e..af7f844a 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, -- cgit v1.2.3