From 73c2371744c08c677540d468a588586effecab2d Mon Sep 17 00:00:00 2001 From: Gargi Sharma Date: Tue, 28 Mar 2017 19:42:39 +0530 Subject: 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 Signed-off-by: Pablo Neira Ayuso --- extensions/ebt_ulog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'extensions/ebt_ulog.c') diff --git a/extensions/ebt_ulog.c b/extensions/ebt_ulog.c index 162586d..54eec53 100644 --- a/extensions/ebt_ulog.c +++ b/extensions/ebt_ulog.c @@ -24,7 +24,7 @@ #define ULOG_CPRANGE '3' #define ULOG_QTHRESHOLD '4' #define ULOG_ULOG '5' -static struct option opts[] = +static const struct option opts[] = { { "ulog-prefix" , required_argument, 0, ULOG_PREFIX }, { "ulog-nlgroup" , required_argument, 0, ULOG_NLGROUP }, -- cgit v1.2.3