summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/libs6dns/s6dns_engine.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs6dns/s6dns_engine.c b/src/libs6dns/s6dns_engine.c
index 5cb77e5..71fc200 100644
--- a/src/libs6dns/s6dns_engine.c
+++ b/src/libs6dns/s6dns_engine.c
@@ -35,7 +35,7 @@ static int relevant (char const *q, unsigned int qlen, char const *ans, unsigned
uint16_t id ;
LOLDEBUG("entering relevant()") ;
s6dns_message_header_unpack(ans, &h) ;
- LOLDEBUG(" testing answer qr, opcode, z, counts.qd") ;
+ LOLDEBUG(" answer qr = %u, opcode = %u, z = %u, qd = %u", h.qr, h.opcode, h.z, h.counts.qd) ;
if (!h.qr || h.opcode || h.z || (h.counts.qd != 1)) return 0 ;
LOLDEBUG(" testing answer rd") ;
if (h.rd != (q[2] & 1)) return 0 ;