Gisle's fix for resuming large file:// files on windows - slightly edited
authorDaniel Stenberg <daniel@haxx.se>
Mon, 13 Dec 2004 10:25:26 +0000 (10:25 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 13 Dec 2004 10:25:26 +0000 (10:25 +0000)
by me.

lib/file.c

index 0f44893..6b2bbd1 100644 (file)
@@ -169,6 +169,10 @@ CURLcode Curl_file_connect(struct connectdata *conn)
 
 #if defined(WIN32) && (SIZEOF_CURL_OFF_T > 4)
 #define lseek(x,y,z) _lseeki64(x, y, z)
+#define struct_stat struct _stati64
+#define fstat(fd,st) _fstati64(fd,st)
+#else
+#define struct_stat struct stat
 #endif
 
 CURLcode Curl_file_done(struct connectdata *conn,
@@ -278,7 +282,9 @@ CURLcode Curl_file(struct connectdata *conn)
      (via NFS, Samba, NT sharing) can be accessed through a file:// URL
   */
   CURLcode res = CURLE_OK;
-  struct stat statbuf;
+  struct_stat statbuf; /* struct_stat instead of struct stat just to allow the
+                          Windows version to have a different struct without
+                          having to redefine the simple word 'stat' */
   curl_off_t expected_size=0;
   bool fstated=FALSE;
   ssize_t nread;