From c3fe968f221e2f7c63b7eb24f557223c4bbbe75f Mon Sep 17 00:00:00 2001 From: Christopher Faulet Date: Wed, 23 Jun 2021 12:21:43 +0200 Subject: [PATCH] CLEANUP: dns: Remove a forgotten debug message A debug message was forgotten in the dns part. This patch should fix the issue #1304. It must be backported to 2.4. --- src/dns.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/dns.c b/src/dns.c index 6e0ae26007..d4bf83998e 100644 --- a/src/dns.c +++ b/src/dns.c @@ -170,7 +170,6 @@ ssize_t dns_recv_nameserver(struct dns_nameserver *ns, void *data, size_t size) if (!LIST_ISEMPTY(&dss->wait_sess)) { ds = LIST_NEXT(&dss->wait_sess, struct dns_session *, waiter); - fprintf(stderr, "ds: %p\n", ds); ret = ds->rx_msg.len < size ? ds->rx_msg.len : size; memcpy(data, ds->rx_msg.area, ret); -- 2.47.2