diff options
author | dartraiden <wowemuh@gmail.com> | 2024-12-12 09:52:45 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2024-12-12 09:55:10 +0300 |
commit | cefdd26d62e01878b8e8acbb78a8fcc477a63fd9 (patch) | |
tree | 023cc726019de25ac01e7d6098b620e1f36f426a /libs/libcurl/src/formdata.c | |
parent | 583ab0796b113df6474cfce7416084215cb850e7 (diff) |
libcurl: update to 8.11.1
Diffstat (limited to 'libs/libcurl/src/formdata.c')
-rw-r--r-- | libs/libcurl/src/formdata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/libcurl/src/formdata.c b/libs/libcurl/src/formdata.c index 2f45376413..84ad27891d 100644 --- a/libs/libcurl/src/formdata.c +++ b/libs/libcurl/src/formdata.c @@ -793,7 +793,7 @@ static CURLcode setname(curl_mimepart *part, const char *name, size_t len) /* wrap call to fseeko so it matches the calling convention of callback */
static int fseeko_wrapper(void *stream, curl_off_t offset, int whence)
{
-#if defined(HAVE__FSEEKI64)
+#if defined(_WIN32) && defined(USE_WIN32_LARGE_FILES)
return _fseeki64(stream, (__int64)offset, whence);
#elif defined(HAVE_FSEEKO) && defined(HAVE_DECL_FSEEKO)
return fseeko(stream, (off_t)offset, whence);
|