diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2011-07-05 15:58:32 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2011-07-05 15:58:32 +0200 |
commit | 73da43e90be945d3be9b4f3b6e5016fb7bacb59d (patch) | |
tree | 6c17f4f3fa730d44c0602440d2c9b61ae498d9b8 /apt-pkg/acquire-method.h | |
parent | ef25649c3d6a535706d1039aba128e1b22341f91 (diff) |
* apt-pkg/acquire*.{cc,h}:
- try even harder to support really big files in the fetcher by
converting (hopefully) everything to 'long long' (Closes: #632271)
Diffstat (limited to 'apt-pkg/acquire-method.h')
-rw-r--r-- | apt-pkg/acquire-method.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/acquire-method.h b/apt-pkg/acquire-method.h index 2d0fa4590..6551170c4 100644 --- a/apt-pkg/acquire-method.h +++ b/apt-pkg/acquire-method.h @@ -51,8 +51,8 @@ class pkgAcqMethod time_t LastModified; bool IMSHit; string Filename; - unsigned long Size; - unsigned long ResumePoint; + unsigned long long Size; + unsigned long long ResumePoint; void TakeHashes(Hashes &Hash); FetchResult(); |