From 78b9d438037f2c83a7bbb73eb1b86cc295967905 Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Thu, 2 Aug 2018 17:05:15 +0200 Subject: Consolidate DEBUGP macros This debug printing macro was defined in various places, always identical. Move it into xshared.h and drop it from sources including that header. There are a few exceptions: * iptables-xml.c did not include xshared.h, which this patch changes. * Sources in extensions and libiptc mostly left alone since they don't include xshared.h (and maybe shouldn't). Only libxt_set.h does, so it's converted, too. This also converts DEBUG define use in libip6t_hbh.c to avoid a compiler warning. Signed-off-by: Phil Sutter Signed-off-by: Florian Westphal --- extensions/libip6t_hbh.c | 6 ++---- extensions/libxt_set.h | 6 ------ iptables/ip6tables-restore.c | 6 ------ iptables/iptables-restore.c | 6 ------ iptables/iptables-xml.c | 7 +------ iptables/nft-shared.h | 5 +---- iptables/xshared.h | 6 ++++++ iptables/xtables-restore.c | 6 ------ 8 files changed, 10 insertions(+), 38 deletions(-) diff --git a/extensions/libip6t_hbh.c b/extensions/libip6t_hbh.c index 76b4ff00..4cebecfd 100644 --- a/extensions/libip6t_hbh.c +++ b/extensions/libip6t_hbh.c @@ -5,8 +5,6 @@ #include #include -#define DEBUG 0 - enum { O_HBH_LEN = 0, O_HBH_OPTS, @@ -83,7 +81,7 @@ parse_options(const char *optsstr, uint16_t *opts) opts[i] |= (0x00FF); } -#if DEBUG +#ifdef DEBUG printf("opts str: %s %s\n", cp, range); printf("opts opt: %04X\n", opts[i]); #endif @@ -92,7 +90,7 @@ parse_options(const char *optsstr, uint16_t *opts) free(buffer); -#if DEBUG +#ifdef DEBUG printf("addr nr: %d\n", i); #endif diff --git a/extensions/libxt_set.h b/extensions/libxt_set.h index 5a1bdcf7..41dfbd30 100644 --- a/extensions/libxt_set.h +++ b/extensions/libxt_set.h @@ -8,12 +8,6 @@ #include #include "../iptables/xshared.h" -#ifdef DEBUG -#define DEBUGP(x, args...) fprintf(stderr, x , ## args) -#else -#define DEBUGP(x, args...) -#endif - static int get_version(unsigned *version) { diff --git a/iptables/ip6tables-restore.c b/iptables/ip6tables-restore.c index d36f92da..3065768e 100644 --- a/iptables/ip6tables-restore.c +++ b/iptables/ip6tables-restore.c @@ -20,12 +20,6 @@ #include "libiptc/libip6tc.h" #include "ip6tables-multi.h" -#ifdef DEBUG -#define DEBUGP(x, args...) fprintf(stderr, x, ## args) -#else -#define DEBUGP(x, args...) -#endif - static int counters, verbose, noflush, wait; static struct timeval wait_interval = { diff --git a/iptables/iptables-restore.c b/iptables/iptables-restore.c index 142ddb82..e52e8e47 100644 --- a/iptables/iptables-restore.c +++ b/iptables/iptables-restore.c @@ -17,12 +17,6 @@ #include "libiptc/libiptc.h" #include "iptables-multi.h" -#ifdef DEBUG -#define DEBUGP(x, args...) fprintf(stderr, x, ## args) -#else -#define DEBUGP(x, args...) -#endif - static int counters, verbose, noflush, wait; static struct timeval wait_interval = { diff --git a/iptables/iptables-xml.c b/iptables/iptables-xml.c index 69c19a60..a1b09f3a 100644 --- a/iptables/iptables-xml.c +++ b/iptables/iptables-xml.c @@ -16,12 +16,7 @@ #include "libiptc/libiptc.h" #include "xtables-multi.h" #include - -#ifdef DEBUG -#define DEBUGP(x, args...) fprintf(stderr, x, ## args) -#else -#define DEBUGP(x, args...) -#endif +#include "xshared.h" struct xtables_globals iptables_xml_globals = { .option_offset = 0, diff --git a/iptables/nft-shared.h b/iptables/nft-shared.h index 882f60e8..5ef17a08 100644 --- a/iptables/nft-shared.h +++ b/iptables/nft-shared.h @@ -11,12 +11,9 @@ #include "xshared.h" -#if 0 -#define DEBUGP(x, args...) fprintf(stdout, x, ## args) +#ifdef DEBUG #define NLDEBUG #define DEBUG_DEL -#else -#define DEBUGP(x, args...) #endif /* diff --git a/iptables/xshared.h b/iptables/xshared.h index 533c5268..363549db 100644 --- a/iptables/xshared.h +++ b/iptables/xshared.h @@ -10,6 +10,12 @@ #include #include +#ifdef DEBUG +#define DEBUGP(x, args...) fprintf(stdout, x, ## args) +#else +#define DEBUGP(x, args...) +#endif + enum { OPT_NONE = 0, OPT_NUMERIC = 1 << 0, diff --git a/iptables/xtables-restore.c b/iptables/xtables-restore.c index 5c0ae98e..0a3d1a31 100644 --- a/iptables/xtables-restore.c +++ b/iptables/xtables-restore.c @@ -19,12 +19,6 @@ #include "nft-bridge.h" #include -#ifdef DEBUG -#define DEBUGP(x, args...) fprintf(stderr, x, ## args) -#else -#define DEBUGP(x, args...) -#endif - static int counters, verbose, noflush; /* Keeping track of external matches and targets. */ -- cgit v1.2.3