summaryrefslogtreecommitdiff
path: root/lib/transfer.c
diff options
context:
space:
mode:
authorGisle Vanem <gisle.vanem@gmail.com>2021-06-04 12:16:57 +0200
committerGisle Vanem <gvanem@yahoo.no>2021-06-04 14:31:11 +0200
commit1838925aac4d6896945e54ad8a6723b039c9a118 (patch)
tree09a9cdfaa9e708291ef8d40b9c55b61c05fe4013 /lib/transfer.c
parentd8dcb399b8009df09551fca3f58ed85cead07bbe (diff)
downloadcurl-1838925aac4d6896945e54ad8a6723b039c9a118.tar.gz
[Win32] Fix for USE_WATT32
My Watt-32 tcp/ip stack works on Windows but it does not have `WSAIoctl()`
Diffstat (limited to 'lib/transfer.c')
-rw-r--r--lib/transfer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/transfer.c b/lib/transfer.c
index 3ea07c5e9..097d38d79 100644
--- a/lib/transfer.c
+++ b/lib/transfer.c
@@ -923,7 +923,7 @@ CURLcode Curl_done_sending(struct Curl_easy *data,
return CURLE_OK;
}
-#if defined(WIN32) && !defined(USE_LWIPSOCK)
+#if defined(WIN32) && defined(USE_WINSOCK)
#ifndef SIO_IDEAL_SEND_BACKLOG_QUERY
#define SIO_IDEAL_SEND_BACKLOG_QUERY 0x4004747B
#endif