From: Jan Engelhardt Date: Thu, 14 Feb 2008 01:10:34 +0000 (+0100) Subject: Correct the family member value of libxt_mark revision 1 X-Git-Tag: v1.4.1-rc1~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5180032804c03225542368aaaf19060fe7a47a1c;p=thirdparty%2Fiptables.git 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. --- 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,