summaryrefslogtreecommitdiffstats
path: root/extensions/ebt_vlan.c
diff options
context:
space:
mode:
authorGargi Sharma <gs051095@gmail.com>2017-03-28 19:42:39 +0530
committerPablo Neira Ayuso <pablo@netfilter.org>2017-03-28 17:28:03 +0200
commit73c2371744c08c677540d468a588586effecab2d (patch)
treee1f44074a621e4999d84071a1470e9b1b088df34 /extensions/ebt_vlan.c
parent4c3e5cd3dbae3ea773e9dcca7cf019b2713af70d (diff)
ebtables: extensions: Constify option struct
The struct of the type option is only used to initialise a field inside the ebt_u_watcher or ebt_u_target or ebt_u_match struct and is not modified anywhere. Signed-off-by: Gargi Sharma <gs051095@gmail.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'extensions/ebt_vlan.c')
-rw-r--r--extensions/ebt_vlan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/ebt_vlan.c b/extensions/ebt_vlan.c
index 6714c82..0a37067 100644
--- a/extensions/ebt_vlan.c
+++ b/extensions/ebt_vlan.c
@@ -25,7 +25,7 @@
#define VLAN_PRIO '2'
#define VLAN_ENCAP '3'
-static struct option opts[] = {
+static const struct option opts[] = {
{"vlan-id" , required_argument, NULL, VLAN_ID},
{"vlan-prio" , required_argument, NULL, VLAN_PRIO},
{"vlan-encap", required_argument, NULL, VLAN_ENCAP},