From ca3731d58bb4de3e95a4f9ab1cc10e4723391aa0 Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Wed, 18 Feb 2009 16:29:44 +0100 Subject: [PATCH] --- yaml --- r: 135469 b: refs/heads/master c: 4a2f965ca5a4e2593744bf75425d85e0e8ff814a h: refs/heads/master i: 135467: 543a848b7c04c664156cbaf8b9b13ae0a1899077 v: v3 --- [refs] | 2 +- trunk/include/linux/netfilter/x_tables.h | 9 ++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/[refs] b/[refs] index 8b9bc9a529ed..4361d4fe3e16 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: fecea3a389c89de9afae2eda74fad894d5677229 +refs/heads/master: 4a2f965ca5a4e2593744bf75425d85e0e8ff814a diff --git a/trunk/include/linux/netfilter/x_tables.h b/trunk/include/linux/netfilter/x_tables.h index c7ee8744d26b..9fac88fc0e72 100644 --- a/trunk/include/linux/netfilter/x_tables.h +++ b/trunk/include/linux/netfilter/x_tables.h @@ -349,9 +349,6 @@ struct xt_table { struct list_head list; - /* A unique name... */ - const char name[XT_TABLE_MAXNAMELEN]; - /* What hooks you will enter on */ unsigned int valid_hooks; @@ -359,13 +356,15 @@ struct xt_table rwlock_t lock; /* Man behind the curtain... */ - //struct ip6t_table_info *private; - void *private; + struct xt_table_info *private; /* Set this to THIS_MODULE if you are a module, otherwise NULL */ struct module *me; u_int8_t af; /* address/protocol family */ + + /* A unique name... */ + const char name[XT_TABLE_MAXNAMELEN]; }; #include