From f638e23ab662952bec91b5721f6844f28ada29d6 Mon Sep 17 00:00:00 2001 From: ValdikSS Date: Sun, 21 Jan 2018 01:27:55 +0300 Subject: [PATCH] Fix build with -DDEBUG --- dnsredir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dnsredir.c b/dnsredir.c index 40199aa..8b175df 100644 --- a/dnsredir.c +++ b/dnsredir.c @@ -195,6 +195,6 @@ int dns_handle_incoming(const uint32_t srcip, const uint16_t srcport, return TRUE; } } - debug("____dns_handle_incoming FALSE: srcport = %hu, dstport = %hu\n", ntohs(srcport), ntohs(dstport)); + debug("____dns_handle_incoming FALSE: srcport = %hu\n", ntohs(srcport)); return FALSE; }