From 9df309a14ac5ae97424d53990961c9f4e533ffef Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Tue, 28 Apr 2009 10:04:36 +0200 Subject: [PATCH] iface: remove unused .data field Neither is it anywhere used, but compat_xtables does not provide it either. --- extensions/xt_iface.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/extensions/xt_iface.c b/extensions/xt_iface.c index df3e4a3..b088cfb 100644 --- a/extensions/xt_iface.c +++ b/extensions/xt_iface.c @@ -68,7 +68,6 @@ static struct xt_match xt_iface_mt_reg[] __read_mostly = { .family = NFPROTO_IPV4, .matchsize = XT_ALIGN(sizeof(struct xt_iface_mtinfo)), .match = xt_iface_mt, - .data = 0, .me = THIS_MODULE, }, { @@ -77,7 +76,6 @@ static struct xt_match xt_iface_mt_reg[] __read_mostly = { .family = NFPROTO_IPV6, .matchsize = XT_ALIGN(sizeof(struct xt_iface_mtinfo)), .match = xt_iface_mt, - .data = 0, .me = THIS_MODULE, }, };