]> git.saurik.com Git - apt.git/blobdiff - apt-inst/contrib/extracttar.h
Check if the Apt::Sandbox::User exists in CheckDropPrivsMustBeDisabled()
[apt.git] / apt-inst / contrib / extracttar.h
index 57be956bd0649fe6b0b54292374dbd65fe9570e5..871946edb51dbd39098d714c8b84f8b39f1b8b5d 100644 (file)
@@ -40,11 +40,7 @@ class ExtractTar
                   GNU_LongLink = 'K',GNU_LongName = 'L'};
 
    FileFd &File;
-#if APT_PKG_ABI >= 413
    unsigned long long MaxInSize;
-#else
-   unsigned long MaxInSize;
-#endif
    int GZPid;
    FileFd InFd;
    bool Eof;
@@ -52,17 +48,14 @@ class ExtractTar
    
    // Fork and reap gzip
    bool StartGzip();
-   bool Done(bool Force);
-   
+   bool Done();
+   APT_DEPRECATED bool Done(bool Force); // Force is ignored – and the default behaviour
+
    public:
 
    bool Go(pkgDirStream &Stream);
 
-#if APT_PKG_ABI >= 413
    ExtractTar(FileFd &Fd,unsigned long long Max,std::string DecompressionProgram);
-#else
-   ExtractTar(FileFd &Fd,unsigned long Max,std::string DecompressionProgram);
-#endif
    virtual ~ExtractTar();
 };