docs/example patches for VMS
authorYang Tse <yangsita@gmail.com>
Fri, 5 Jun 2009 18:40:40 +0000 (18:40 +0000)
committerYang Tse <yangsita@gmail.com>
Fri, 5 Jun 2009 18:40:40 +0000 (18:40 +0000)
docs/examples/anyauthput.c
docs/examples/debug.c
docs/examples/ftpupload.c
docs/examples/multi-debugcallback.c

index 11c9d3c..dd5b5dd 100644 (file)
@@ -13,7 +13,9 @@
 #ifdef WIN32
 #  include <io.h>
 #else
-#  include <stdint.h>
+#  ifndef __VMS
+#    include <stdint.h>
+#  endif
 #  include <unistd.h>
 #endif
 #include <sys/types.h>
index 543a565..30ce820 100644 (file)
@@ -29,11 +29,12 @@ void dump(const char *text,
     /* without the hex output, we can fit more on screen */
     width = 0x40;
 
-  fprintf(stream, "%s, %zd bytes (0x%zx)\n", text, size, size);
+  fprintf(stream, "%s, %010.10ld bytes (0x%08.8lx)\n",
+          text, (long)size, (long)size);
 
   for(i=0; i<size; i+= width) {
 
-    fprintf(stream, "%04zx: ", i);
+    fprintf(stream, "%04.4lx: ", (long)i);
 
     if(!nohex) {
       /* hex not disabled, show it */
index 76fc92e..a727924 100644 (file)
@@ -65,7 +65,7 @@ int main(int argc, char **argv)
     printf("Couldnt open '%s': %s\n", LOCAL_FILE, strerror(errno));
     return 1;
   }
-  printf("Local file size: %ld bytes.\n", file_info.st_size);
+  printf("Local file size: %ld bytes.\n", (long)file_info.st_size);
 
   /* get a FILE * of the same file */
   hd_src = fopen(LOCAL_FILE, "rb");
index 6a7403a..22d26c7 100644 (file)
@@ -38,11 +38,12 @@ void dump(const char *text,
     /* without the hex output, we can fit more on screen */
     width = 0x40;
 
-  fprintf(stream, "%s, %zd bytes (0x%zx)\n", text, size, size);
+  fprintf(stream, "%s, %010.10ld bytes (0x%08.8lx)\n",
+          text, (long)size, (long)size);
 
   for(i=0; i<size; i+= width) {
 
-    fprintf(stream, "%04zx: ", i);
+    fprintf(stream, "%04.4lx: ", (long)i);
 
     if(!nohex) {
       /* hex not disabled, show it */
@@ -74,7 +75,7 @@ void dump(const char *text,
 
 static
 int my_trace(CURL *handle, curl_infotype type,
-             char *data, size_t size,
+             unsigned char *data, size_t size,
              void *userp)
 {
   const char *text;