From: Christopher Faulet Date: Wed, 23 Jun 2021 10:21:43 +0000 (+0200) Subject: CLEANUP: dns: Remove a forgotten debug message X-Git-Tag: v2.5-dev1~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c3fe968f221e2f7c63b7eb24f557223c4bbbe75f;p=thirdparty%2Fhaproxy.git 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. --- 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);