From: Ian Jackson Date: Sun, 13 Apr 2014 14:05:40 +0000 (+0100) Subject: netlink: Provide MDEBUG macro X-Git-Tag: wip.frag.v1~7 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=secnet.git;a=commitdiff_plain;h=a0b107b8722e92aa3f29945239ce6793bf5ea877 netlink: Provide MDEBUG macro Signed-off-by: Ian Jackson --- diff --git a/netlink.c b/netlink.c index 97e1af9..f2fa273 100644 --- a/netlink.c +++ b/netlink.c @@ -106,6 +106,12 @@ their use. #include "netlink.h" #include "process.h" +#ifdef NETLINK_DEBUG +#define MDEBUG(...) Message(M_DEBUG, __VA_ARGS__) +#else /* !NETLINK_DEBUG */ +#define MDEBUG(...) ((void)0) +#endif /* !NETLINK_DEBUG */ + #define ICMP_TYPE_ECHO_REPLY 0 #define ICMP_TYPE_UNREACHABLE 3