From 2c4e4d2a7432d483ac5599a15b36d1dc1edf72df Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Thu, 23 Aug 2018 17:43:22 +0200 Subject: ebtables: trivial: Leverage C99-style initializers a bit more This nit was discovered when comparing do_commandeb() with do_commandeb_xlate(): Since 'cs' is initialized upon declaration already, initialization of field '.eb.bitmask' may be moved there as well. Signed-off-by: Phil Sutter Signed-off-by: Pablo Neira Ayuso --- iptables/xtables-eb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'iptables/xtables-eb.c') diff --git a/iptables/xtables-eb.c b/iptables/xtables-eb.c index 534714de..68f12500 100644 --- a/iptables/xtables-eb.c +++ b/iptables/xtables-eb.c @@ -769,6 +769,7 @@ int do_commandeb(struct nft_handle *h, int argc, char *argv[], char **table, struct xtables_match *m; struct iptables_command_state cs = { .argv = argv, + .eb.bitmask = EBT_NOPROTO, }; char command = 'h'; const char *chain = NULL; @@ -790,7 +791,6 @@ int do_commandeb(struct nft_handle *h, int argc, char *argv[], char **table, /* prevent getopt to spoil our error reporting */ optind = 0; opterr = false; - cs.eb.bitmask = EBT_NOPROTO; /* Getopt saves the day */ while ((c = getopt_long(argc, argv, -- cgit v1.2.3