diff options
author | Guillem Jover <guillem@debian.org> | 2014-07-02 03:10:21 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-07-08 10:00:15 +0200 |
commit | 3621b1c70f532c61ccfee6a65c413ee573ed4900 (patch) | |
tree | 7254b6abc754ce96ddbe3cbeb3157c928d7a0c0e /apt-inst/dirstream.h | |
parent | 3c09d634b6aef7bbdbc75f38e3969f4b46b0ac0d (diff) |
Fix ar and tar code to be LFS-safe
This is an ABI break.
Closes: #742882
Diffstat (limited to 'apt-inst/dirstream.h')
-rw-r--r-- | apt-inst/dirstream.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-inst/dirstream.h b/apt-inst/dirstream.h index 1be2688a1..571fe86a5 100644 --- a/apt-inst/dirstream.h +++ b/apt-inst/dirstream.h @@ -37,10 +37,10 @@ class pkgDirStream Directory, FIFO} Type; char *Name; char *LinkTarget; + unsigned long long Size; unsigned long Mode; unsigned long UID; unsigned long GID; - unsigned long Size; unsigned long MTime; unsigned long Major; unsigned long Minor; @@ -50,7 +50,7 @@ class pkgDirStream virtual bool Fail(Item &Itm,int Fd); virtual bool FinishedFile(Item &Itm,int Fd); virtual bool Process(Item &/*Itm*/,const unsigned char * /*Data*/, - unsigned long /*Size*/,unsigned long /*Pos*/) {return true;}; + unsigned long long /*Size*/,unsigned long long /*Pos*/) {return true;}; virtual ~pkgDirStream() {}; }; |