1
0
Fork 0

netfilter: netns: use NFPROTO_NUMPROTO instead of NUMPROTO for tables array

The netfilter families have been decoupled from regular protocol families.

Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
wifi-calibration
Patrick McHardy 2008-10-20 03:31:54 -07:00 committed by David S. Miller
parent 041fb574c7
commit 10a03a42d1
1 changed files with 2 additions and 2 deletions

View File

@ -2,9 +2,9 @@
#define __NETNS_X_TABLES_H
#include <linux/list.h>
#include <linux/net.h>
#include <linux/netfilter.h>
struct netns_xt {
struct list_head tables[NPROTO];
struct list_head tables[NFPROTO_NUMPROTO];
};
#endif