diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2018-04-07 16:03:55 -0400 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2018-04-07 16:03:55 -0400 |
commit | 817d1c01064ac81e9609819b15738ee540ef056c (patch) | |
tree | 3697993d5aec7cab1744f1b9ea4c82902837c314 | |
parent | 8020a0c62f79239c802ed6fa840b11677176910a (diff) | |
download | curl-817d1c01064ac81e9609819b15738ee540ef056c.tar.gz |
examples/sftpuploadresmue: Fix Windows large file seek
- Use _fseeki64 instead of fseek (long) to seek curl_off_t in Windows.
- Use CURL_FORMAT_CURL_OFF_T specifier instead of %ld to print
curl_off_t.
Caught by Marc's CI builds.
-rw-r--r-- | docs/examples/sftpuploadresume.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/examples/sftpuploadresume.c b/docs/examples/sftpuploadresume.c index 032bcaffb..3fcab71fb 100644 --- a/docs/examples/sftpuploadresume.c +++ b/docs/examples/sftpuploadresume.c @@ -65,7 +65,7 @@ static curl_off_t sftpGetRemoteFileSize(const char *i_remoteFile) result = curl_easy_getinfo(curlHandlePtr, CURLINFO_CONTENT_LENGTH_DOWNLOAD_T, &remoteFileSizeByte); - printf("filesize: %ld \n", remoteFileSizeByte); + printf("filesize: %" CURL_FORMAT_CURL_OFF_T "\n", remoteFileSizeByte); } curl_easy_cleanup(curlHandlePtr); @@ -96,7 +96,11 @@ static int sftpResumeUpload(CURL *curlhandle, const char *remotepath, curl_easy_setopt(curlhandle, CURLOPT_READFUNCTION, readfunc); curl_easy_setopt(curlhandle, CURLOPT_READDATA, f); +#ifdef _WIN32 + _fseeki64(f, remoteFileSizeByte, SEEK_SET); +#else fseek(f, remoteFileSizeByte, SEEK_SET); +#endif curl_easy_setopt(curlhandle, CURLOPT_APPEND, 1L); result = curl_easy_perform(curlhandle); |