Andy Cedilnik's corrections
authorDaniel Stenberg <daniel@haxx.se>
Mon, 17 Mar 2003 12:38:08 +0000 (12:38 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 17 Mar 2003 12:38:08 +0000 (12:38 +0000)
docs/examples/ftpupload.c
docs/examples/sepheaders.c

index 5b430e648bf489c2cb73eeb0ee7dcaad53536896..dee44c4ab0c7ace27bdc5e3b8bec4de80029cacc 100644 (file)
@@ -11,6 +11,9 @@
 #include <stdio.h>
 
 #include <curl/curl.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <fcntl.h>
 
 /*
  * This example shows an FTP upload, with a rename of the file just after
index 3f4eb5cf40ad93ce33f0167e721ffb01e5a6499c..7168f80166da7974a90a657c1faf44544c6beecf 100644 (file)
@@ -21,7 +21,7 @@
 
 size_t write_data(void *ptr, size_t size, size_t nmemb, void *stream)
 {
-  written = fwrite(ptr, size, nmemb, (FILE *)stream);
+  int written = fwrite(ptr, size, nmemb, (FILE *)stream);
   return written;
 }