From 49ce3e5160a9576e797bf87cef012b09d1c54ecb Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Thu, 12 Jul 2007 21:11:10 +0000 Subject: Fixed some compile warnings and errors and improved portability in the examples. Removed ftp3rdparty.c since libcurl doesn't support 3rd party FTP transfers any longer. --- docs/examples/simplepost.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'docs/examples/simplepost.c') diff --git a/docs/examples/simplepost.c b/docs/examples/simplepost.c index 1d156c583..9bab83b7d 100644 --- a/docs/examples/simplepost.c +++ b/docs/examples/simplepost.c @@ -9,6 +9,7 @@ */ #include +#include #include int main(void) @@ -16,7 +17,7 @@ int main(void) CURL *curl; CURLcode res; - char *postthis="moo mooo moo moo"; + static const char *postthis="moo mooo moo moo"; curl = curl_easy_init(); if(curl) { -- cgit v1.2.3