diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/asr.c | 12 | ||||
-rw-r--r-- | src/download.c | 2 |
2 files changed, 6 insertions, 8 deletions
@@ -205,9 +205,8 @@ int asr_perform_validation(asr_client_t asr, const char* filesystem) { } #ifdef WIN32 - _fseeki64(file, 0, SEEK_END); - length = _ftelli64(file); - _fseeki64(file, 0, SEEK_SET); + length = _lseeki64(fileno(file), 0, SEEK_END); + _lseeki64(fileno(file), 0, SEEK_SET); #else fseeko(file, 0, SEEK_END); length = ftello(file); @@ -307,7 +306,7 @@ int asr_handle_oob_data_request(asr_client_t asr, plist_t packet, FILE* file) { } #ifdef WIN32 - _fseeki64(file, oob_offset, SEEK_SET); + _lseeki64(fileno(file), oob_offset, SEEK_SET); #else fseeko(file, oob_offset, SEEK_SET); #endif @@ -341,9 +340,8 @@ int asr_send_payload(asr_client_t asr, const char* filesystem) { } #ifdef WIN32 - _fseeki64(file, 0, SEEK_END); - length = _ftelli64(file); - _fseeki64(file, 0, SEEK_SET); + length = _lseeki64(fileno(file), 0, SEEK_END); + _lseeki64(fileno(file), 0, SEEK_SET); #else fseeko(file, 0, SEEK_END); length = ftello(file); diff --git a/src/download.c b/src/download.c index 8bae52f..e09d911 100644 --- a/src/download.c +++ b/src/download.c @@ -140,7 +140,7 @@ int download_to_file(const char* url, const char* filename, int enable_progress) curl_easy_cleanup(handle); #ifdef WIN32 - uint64_t sz = _ftelli64(f); + uint64_t sz = _lseeki64(fileno(f), 0, SEEK_CUR); #else off_t sz = ftello(f); #endif |