summaryrefslogtreecommitdiffstats
path: root/extensions/libebt_nflog.c
diff options
context:
space:
mode:
authorGargi Sharma <gs051095@gmail.com>2017-03-28 00:40:15 +0530
committerPablo Neira Ayuso <pablo@netfilter.org>2017-03-27 21:13:08 +0200
commit1cf4ba6fbe85b3cbe9828a7947000290e1989986 (patch)
tree8f8bb7f8f70750211e66f85658014943c2c23efc /extensions/libebt_nflog.c
parent999eaa241212d3952ddff39a99d0d55a74e3639e (diff)
iptables: Constify option struct
The struct of the type option is only used to initialise a field inside the xtables_match struct and is not modified anywhere. Done using Coccinelle: @r1 disable optional_qualifier@ identifier s,i; position p; @@ static struct option i@p[] ={...}; @ok1@ identifier r1.i; expression e; position p; @@ e = i@p @bad@ position p != {r1.p,ok1.p}; identifier r1.i; @@ e@i@p @depends on !bad disable optional_qualifier@ identifier r1.i; @@ static +const struct option i[] = { ... }; Signed-off-by: Gargi Sharma <gs051095@gmail.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'extensions/libebt_nflog.c')
-rw-r--r--extensions/libebt_nflog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/libebt_nflog.c b/extensions/libebt_nflog.c
index fef71960..5f1d13b1 100644
--- a/extensions/libebt_nflog.c
+++ b/extensions/libebt_nflog.c
@@ -30,7 +30,7 @@ enum {
NFLOG_NFLOG = 0x16,
};
-static struct option brnflog_opts[] = {
+static const struct option brnflog_opts[] = {
{ .name = "nflog-group", .has_arg = true, .val = NFLOG_GROUP},
{ .name = "nflog-prefix", .has_arg = true, .val = NFLOG_PREFIX},
{ .name = "nflog-range", .has_arg = true, .val = NFLOG_RANGE},