mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +03:00
Use int64_t instead of off_t
Some classes such as DiskAdaptor, DiskWriter, FileAllocationIterator and ChecksumValidator are left unchanged.
This commit is contained in:
parent
4b03634f36
commit
1b874268a0
83 changed files with 334 additions and 336 deletions
|
@ -181,7 +181,7 @@ bool HttpResponseCommand::executeInternal()
|
|||
int statusCode = httpResponse->getStatusCode();
|
||||
|
||||
if(statusCode == 304) {
|
||||
off_t totalLength = httpResponse->getEntityLength();
|
||||
int64_t totalLength = httpResponse->getEntityLength();
|
||||
getFileEntry()->setLength(totalLength);
|
||||
getRequestGroup()->initPieceStorage();
|
||||
getPieceStorage()->markAllPiecesDone();
|
||||
|
@ -246,7 +246,7 @@ bool HttpResponseCommand::executeInternal()
|
|||
}
|
||||
if(!getPieceStorage()) {
|
||||
util::removeMetalinkContentTypes(getRequestGroup());
|
||||
off_t totalLength = httpResponse->getEntityLength();
|
||||
int64_t totalLength = httpResponse->getEntityLength();
|
||||
getFileEntry()->setLength(totalLength);
|
||||
if(getFileEntry()->getPath().empty()) {
|
||||
getFileEntry()->setPath
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue