summaryrefslogtreecommitdiffstats
path: root/iptables
diff options
context:
space:
mode:
authorVarsha Rao <rvarsha016@gmail.com>2017-11-30 19:18:05 +0530
committerPablo Neira Ayuso <pablo@netfilter.org>2017-11-30 15:06:13 +0100
commit505bfa114f2e0a86473fca6353fe45828f160e65 (patch)
tree2eb3ad2fdd52a1274ad1c2209c5032b8133ae456 /iptables
parenta6d6821a6c0fae85a4d1570701b3b6bee89ec0a2 (diff)
iptables: xtables-eb: Remove const qualifier from struct option
As opts is reassigned multiple times, it cannot be made constant. So remove const qualifier from structure option. This patch fixes the following warning. xtables-eb.c: In function ‘ebt_load_match_extensions’: xtables-eb.c:653:7: warning: assignment discards ‘const’ qualifier from pointer target type opts = ebt_original_options; Signed-off-by: Varsha Rao <rvarsha016@gmail.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'iptables')
-rw-r--r--iptables/xtables-eb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/iptables/xtables-eb.c b/iptables/xtables-eb.c
index 60ec935c..c8b5d4f3 100644
--- a/iptables/xtables-eb.c
+++ b/iptables/xtables-eb.c
@@ -247,7 +247,7 @@ static int get_current_chain(const char *chain)
/* Default command line options. Do not mess around with the already
* assigned numbers unless you know what you are doing */
-static const struct option ebt_original_options[] =
+static struct option ebt_original_options[] =
{
{ "append" , required_argument, 0, 'A' },
{ "insert" , required_argument, 0, 'I' },