diff options
Diffstat (limited to 'src/libknot/packet/packet.c')
-rw-r--r-- | src/libknot/packet/packet.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libknot/packet/packet.c b/src/libknot/packet/packet.c index b6381c4..2e6e922 100644 --- a/src/libknot/packet/packet.c +++ b/src/libknot/packet/packet.c @@ -307,9 +307,6 @@ static int knot_packet_parse_question(const uint8_t *wire, size_t *pos, return KNOT_EMALF; } } - if (*pos != i + 1) { - dbg_packet("Parsed dname expected len=%zu, parsed=%zu.\n", i+1-bp, *pos-bp); - } question->qtype = knot_wire_read_u16(wire + i + 1); question->qclass = knot_wire_read_u16(wire + i + 3); *pos += 4; |