aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-08-30 09:20:11 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-08-30 09:20:11 +0000
commit8aa3f143035ad982acb6e596a8653ac41a7860cc (patch)
treee6d92edfc7883f0ffe14904dc151b4483e4d0e74 /src
parentac285b453e0db7c4cd327f4dc4845871ce26f7fa (diff)
SOCKS5 support added (contributed by a still unnamed person). Not properly
working for "IPv6 enabled" libcurls yet, but should be pretty easy for someone to adjust.
Diffstat (limited to 'src')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 24eb8fb92..e12bdc4b8 100644
--- a/src/main.c
+++ b/src/main.c
@@ -2698,7 +2698,7 @@ operate(struct Configurable *config, int argc, char *argv[])
curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, errorbuffer);
curl_easy_setopt(curl, CURLOPT_TIMEOUT, config->timeout);
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, config->postfields);
-
+
/* new in libcurl 7.2: */
curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, config->postfieldsize);