mirror of
https://github.com/curl/curl.git
synced 2026-08-26 20:23:32 +03:00
dns: fix compilation with MinGW from commit df69440d05
Avoid 'interface' literal that some MinGW versions define as a macro Additionally, corrected some very, very minor coding style errors.
This commit is contained in:
parent
8f5336a2fa
commit
158dfe2c5c
4 changed files with 17 additions and 10 deletions
|
|
@ -636,10 +636,10 @@ CURLcode Curl_set_dns_servers(struct SessionHandle *data,
|
|||
}
|
||||
|
||||
CURLcode Curl_set_dns_interface(struct SessionHandle *data,
|
||||
const char *interface)
|
||||
const char *interf)
|
||||
{
|
||||
(void)data;
|
||||
(void)interface;
|
||||
(void)interf;
|
||||
return CURLE_NOT_BUILT_IN;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue