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, -- 1.5.5.rc3 -- 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