From 56fe510492bc2b95d84f7ab81a994b459076b7d1 Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Fri, 25 Oct 2019 14:35:51 +0200 Subject: Replace TRUE/FALSE with true/false And drop the conditional defines. Signed-off-by: Phil Sutter Acked-by: Pablo Neira Ayuso --- iptables/xtables.c | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'iptables/xtables.c') diff --git a/iptables/xtables.c b/iptables/xtables.c index 805bd801..8f9dc628 100644 --- a/iptables/xtables.c +++ b/iptables/xtables.c @@ -43,13 +43,6 @@ #include "nft-shared.h" #include "nft.h" -#ifndef TRUE -#define TRUE 1 -#endif -#ifndef FALSE -#define FALSE 0 -#endif - #define OPT_FRAGMENT 0x00800U #define NUMBER_OF_OPT ARRAY_SIZE(optflags) static const char optflags[] @@ -952,7 +945,7 @@ void do_parse(struct nft_handle *h, int argc, char *argv[], xtables_error(PARAMETER_PROBLEM, "multiple consecutive ! not" " allowed"); - cs->invert = TRUE; + cs->invert = true; optarg[0] = '\0'; continue; } @@ -965,7 +958,7 @@ void do_parse(struct nft_handle *h, int argc, char *argv[], continue; break; } - cs->invert = FALSE; + cs->invert = false; } if (strcmp(p->table, "nat") == 0 && -- cgit v1.2.3