From: Daniel Stenberg Date: Sat, 29 Mar 2025 19:45:38 +0000 (+0100) Subject: curl_trc: provide Curl_trc_dns dummy X-Git-Tag: curl-8_13_0~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c131c6c46818d2577f2d5eb542133d51e937490;p=thirdparty%2Fcurl.git curl_trc: provide Curl_trc_dns dummy Follow-up to 19226f9bb106347e21d1dd For building without verbose output. Closes #16871 --- diff --git a/lib/curl_trc.c b/lib/curl_trc.c index 1826b2c7bb..385770a356 100644 --- a/lib/curl_trc.c +++ b/lib/curl_trc.c @@ -612,6 +612,11 @@ void Curl_trc_write(struct Curl_easy *data, const char *fmt, ...) (void)data; (void)fmt; } +void Curl_trc_dns(struct Curl_easy *data, const char *fmt, ...) +{ + (void)data; (void)fmt; +} + void Curl_trc_read(struct Curl_easy *data, const char *fmt, ...) { (void)data; (void)fmt;