diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2018-10-16 20:56:57 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2018-10-17 11:23:29 +0200 |
commit | b274c169014e71715f9333ee028c5a9304881919 (patch) | |
tree | a7d165326f3b5738fbf5e9bf50eda71fbf9e3341 /include | |
parent | 3bc84e5c1fdd1ff011af9788fe174e0514c2c9ea (diff) |
src: remove opts field from struct xt_stmt
This is never used, ie. always NULL.
Reported-by: Phil Sutter <phil@nwl.cc>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Acked-by: Phil Sutter <phil@nwl.cc>
Diffstat (limited to 'include')
-rw-r--r-- | include/statement.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/statement.h b/include/statement.h index 48ba6673..44240550 100644 --- a/include/statement.h +++ b/include/statement.h @@ -237,7 +237,6 @@ struct xt_stmt { struct xtables_match *match; struct xtables_target *target; }; - const char *opts; void *entry; }; |