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 --- iptables/xshared.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'iptables/xshared.h') 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, -- cgit v1.2.3