]> git.saurik.com Git - apt.git/blobdiff - apt-inst/deb/debfile.h
Use some semantically more correct buffer operations
[apt.git] / apt-inst / deb / debfile.h
index 6ad9b7659d5e237e0a493185e5b286c5d13b311d..02ebaae2e5481539270bc40bd96c31ffe503f5d6 100644 (file)
@@ -82,19 +82,11 @@ class debDebFile::MemControlExtract : public pkgDirStream
    // Members from DirStream
    virtual bool DoItem(Item &Itm,int &Fd) APT_OVERRIDE;
    virtual bool Process(Item &Itm,const unsigned char *Data,
-#if APT_PKG_ABI >= 413
                        unsigned long long Size,unsigned long long Pos) APT_OVERRIDE;
-#else
-                       unsigned long Size,unsigned long Pos);
-#endif
 
    // Helpers
    bool Read(debDebFile &Deb);
-#if APT_PKG_ABI >= 413
    bool TakeControl(const void *Data,unsigned long long Size);
-#else
-   bool TakeControl(const void *Data,unsigned long Size);
-#endif
 
    MemControlExtract() : IsControl(false), Control(0), Length(0), Member("control") {};
    MemControlExtract(std::string Member) : IsControl(false), Control(0), Length(0), Member(Member) {};