mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
Replaced uint64_t with off_t or int64_t.
Since off_t is int64_t with LFS, we cannot take advantage of extra capacity of uint64_t.
This commit is contained in:
parent
f25e67b017
commit
12988e5282
127 changed files with 457 additions and 490 deletions
|
@ -180,7 +180,7 @@ bool HttpResponseCommand::executeInternal()
|
|||
int statusCode = httpResponse->getStatusCode();
|
||||
|
||||
if(statusCode == 304) {
|
||||
uint64_t totalLength = httpResponse->getEntityLength();
|
||||
off_t totalLength = httpResponse->getEntityLength();
|
||||
getFileEntry()->setLength(totalLength);
|
||||
getRequestGroup()->initPieceStorage();
|
||||
getPieceStorage()->markAllPiecesDone();
|
||||
|
@ -245,7 +245,7 @@ bool HttpResponseCommand::executeInternal()
|
|||
}
|
||||
if(!getPieceStorage()) {
|
||||
util::removeMetalinkContentTypes(getRequestGroup());
|
||||
uint64_t totalLength = httpResponse->getEntityLength();
|
||||
off_t totalLength = httpResponse->getEntityLength();
|
||||
getFileEntry()->setLength(totalLength);
|
||||
if(getFileEntry()->getPath().empty()) {
|
||||
getFileEntry()->setPath
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue