aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/postit2.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-11-19 08:21:34 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-11-19 08:21:34 +0000
commitcc48658564dad6cd57b7526ab1e98780145a473f (patch)
tree3e77cb68e364e1b795c4a52ea8e0c7f736277ede /docs/examples/postit2.c
parent79e4aee18549b520f73548ce6ef94f6d8d5350f2 (diff)
cut off old crappy win32 comments and use the proper global_init instead
also removed very old "require libcurl older than blablabla"
Diffstat (limited to 'docs/examples/postit2.c')
-rw-r--r--docs/examples/postit2.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/docs/examples/postit2.c b/docs/examples/postit2.c
index 9b7cda07e..a46f0a71b 100644
--- a/docs/examples/postit2.c
+++ b/docs/examples/postit2.c
@@ -21,9 +21,6 @@
* This exact source code has not been verified to work.
*/
-/* to make this work under windows, use the win32-functions from the
- win32socket.c file as well */
-
#include <stdio.h>
#include <string.h>
@@ -31,10 +28,6 @@
#include <curl/types.h>
#include <curl/easy.h>
-#if LIBCURL_VERSION_NUM < 0x070900
-#error "curl_formadd() is not introduced until libcurl 7.9 and later"
-#endif
-
int main(int argc, char *argv[])
{
CURL *curl;
@@ -45,6 +38,8 @@ int main(int argc, char *argv[])
struct curl_slist *headerlist=NULL;
char buf[] = "Expect:";
+ curl_global_init(CURL_GLOBAL_ALL);
+
/* Fill in the file upload field */
curl_formadd(&formpost,
&lastptr,