You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When building the latest curl (7.76.0) without asynchronous name resolution (USE_CURL_ASYNC is undefined), hostip.c fails to compile because the failf() call references the async member which doesn't exist. Probably this whole function can be omitted in this scenario.
I appreciate the quick response, and yes, our configuration is probably pretty unusual. I think maybe it would be good to add the same ifdef to Curl_resolver_error() in hostip.h for consistency?
Activity
jay commentedon Apr 1, 2021
I can reproduce this but only if the DNS backend is synchronous and DOH is disabled. See #6832
bnason-nf commentedon Apr 1, 2021
Hi @jay,
I appreciate the quick response, and yes, our configuration is probably pretty unusual. I think maybe it would be good to add the same ifdef to Curl_resolver_error() in hostip.h for consistency?
Thanks,
Benbuck
jay commentedon Apr 2, 2021
Thanks