diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:57:31 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:57:31 +0000 |
commit | f604cf55e27db1121895a84a525f305a78a3dad9 (patch) | |
tree | d049f8efc18eceed369f7df04792aa511c804480 /apt-pkg/tagfile.h | |
parent | 5d622d510f558981275d6004ec015013dea9cdbf (diff) |
Tag file can read from unseekable objects
Author: jgg
Date: 2001-04-22 05:42:52 GMT
Tag file can read from unseekable objects
Diffstat (limited to 'apt-pkg/tagfile.h')
-rw-r--r-- | apt-pkg/tagfile.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/apt-pkg/tagfile.h b/apt-pkg/tagfile.h index a85d24b7e..f7f1bb42c 100644 --- a/apt-pkg/tagfile.h +++ b/apt-pkg/tagfile.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: tagfile.h,v 1.16 2001/03/11 07:22:19 jgg Exp $ +// $Id: tagfile.h,v 1.17 2001/04/22 05:42:52 jgg Exp $ /* ###################################################################### Fast scanner for RFC-822 type header information @@ -72,10 +72,9 @@ class pkgTagFile char *Buffer; char *Start; char *End; - unsigned long Left; + bool Done; unsigned long iOffset; unsigned long Size; - unsigned long TotalSize; bool Fill(); |