aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2009-05-07 20:02:51 +0000
committerDaniel Stenberg <daniel@haxx.se>2009-05-07 20:02:51 +0000
commit6ca321ca75c8f8ad6808bcfd786ad8e84c790aff (patch)
treee95c4460f18dca18d59cfa485726f1ece6617c23 /lib
parent9c788a529beb63e95de5be013bb4b0f26f8456a0 (diff)
Curl_sndbufset is (at times) defined in the header, no need to do it again here
Diffstat (limited to 'lib')
-rw-r--r--lib/connect.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/connect.c b/lib/connect.c
index 930b2b039..49914e82f 100644
--- a/lib/connect.c
+++ b/lib/connect.c
@@ -719,8 +719,6 @@ void Curl_sndbufset(curl_socket_t sockfd)
int val = CURL_MAX_WRITE_SIZE + 32;
setsockopt(sockfd, SOL_SOCKET, SO_SNDBUF, (const char *)&val, sizeof(val));
}
-#else
-#define Curl_sndbufset(y)
#endif