]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/fileutl.h
impossible to be too long but just to be sure use snprintf
[apt.git] / apt-pkg / contrib / fileutl.h
index 146d917d89113facaf15a9a80384d38d1f2b6935..cde288ad20e7787dc2993a07844f42a5d918fd92 100644 (file)
@@ -72,6 +72,7 @@ class FileFd
    // Simple manipulators
    inline int Fd() {return iFd;};
    inline void Fd(int fd) {iFd = fd;};
+   inline gzFile gzFd() {return gz;};
    inline bool IsOpen() {return iFd >= 0;};
    inline bool Failed() {return (Flags & Fail) == Fail;};
    inline void EraseOnFailure() {Flags |= DelOnFail;};