diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/bridge/netfilter/ebtables.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/net/bridge/netfilter/ebtables.c b/net/bridge/netfilter/ebtables.c index 4b178b4a2a95..997953367204 100644 --- a/net/bridge/netfilter/ebtables.c +++ b/net/bridge/netfilter/ebtables.c | |||
@@ -1477,8 +1477,14 @@ static int do_ebt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len) | |||
1477 | } | 1477 | } |
1478 | 1478 | ||
1479 | static struct nf_sockopt_ops ebt_sockopts = | 1479 | static struct nf_sockopt_ops ebt_sockopts = |
1480 | { { NULL, NULL }, PF_INET, EBT_BASE_CTL, EBT_SO_SET_MAX + 1, do_ebt_set_ctl, | 1480 | { |
1481 | EBT_BASE_CTL, EBT_SO_GET_MAX + 1, do_ebt_get_ctl, 0, NULL | 1481 | .pf = PF_INET, |
1482 | .set_optmin = EBT_BASE_CTL, | ||
1483 | .set_optmax = EBT_SO_SET_MAX + 1, | ||
1484 | .set = do_ebt_set_ctl, | ||
1485 | .get_optmin = EBT_BASE_CTL, | ||
1486 | .get_optmax = EBT_SO_GET_MAX + 1, | ||
1487 | .get = do_ebt_get_ctl, | ||
1482 | }; | 1488 | }; |
1483 | 1489 | ||
1484 | static int __init init(void) | 1490 | static int __init init(void) |