diff options
author | Pablo Neira Ayuso <pablo@eurodev.net> | 2005-08-09 23:06:27 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2005-08-29 18:40:21 -0400 |
commit | 28b19d99ac6d92e4fb2fe34144c495019a638a64 (patch) | |
tree | 368bde8bbf20f61b72d0b9d3433c2ade0815207f /net/ipv4 | |
parent | 37012f7fd326eb3c959428a4fe7e203e6304fe43 (diff) |
[NETFILTER]: Fix typo in ctnl_exp_cb array (no bug, just memory waste)
This fixes the size of the ctnl_exp_cb array that is IPCTNL_MSG_EXP_MAX
instead of IPCTNL_MSG_MAX. Simple typo.
Signed-off-by: Pablo Neira Ayuso <pablo@eurodev.net>
Signed-off-by: Harald Welte <laforge@netfilter.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/netfilter/ip_conntrack_netlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/netfilter/ip_conntrack_netlink.c b/net/ipv4/netfilter/ip_conntrack_netlink.c index f5bda82c2875..e3ba449e3e1d 100644 --- a/net/ipv4/netfilter/ip_conntrack_netlink.c +++ b/net/ipv4/netfilter/ip_conntrack_netlink.c | |||
@@ -1490,7 +1490,7 @@ static struct nfnl_callback ctnl_cb[IPCTNL_MSG_MAX] = { | |||
1490 | .cap_required = CAP_NET_ADMIN }, | 1490 | .cap_required = CAP_NET_ADMIN }, |
1491 | }; | 1491 | }; |
1492 | 1492 | ||
1493 | static struct nfnl_callback ctnl_exp_cb[IPCTNL_MSG_MAX] = { | 1493 | static struct nfnl_callback ctnl_exp_cb[IPCTNL_MSG_EXP_MAX] = { |
1494 | [IPCTNL_MSG_EXP_GET] = { .call = ctnetlink_get_expect, | 1494 | [IPCTNL_MSG_EXP_GET] = { .call = ctnetlink_get_expect, |
1495 | .attr_count = CTA_EXPECT_MAX, | 1495 | .attr_count = CTA_EXPECT_MAX, |
1496 | .cap_required = CAP_NET_ADMIN }, | 1496 | .cap_required = CAP_NET_ADMIN }, |