diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:15 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:15 +0000 |
commit | 93bf083d699c60f1ac40297bfa6783fb0cb800d8 (patch) | |
tree | 456e6c73d98b317d85cbea60728cf9e93546bbd8 /apt-pkg/tagfile.cc | |
parent | 779e5b002e216565108cdb4ad9598e1af650f004 (diff) |
Sync
Author: jgg
Date: 1998-10-30 07:53:30 GMT
Sync
Diffstat (limited to 'apt-pkg/tagfile.cc')
-rw-r--r-- | apt-pkg/tagfile.cc | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/apt-pkg/tagfile.cc b/apt-pkg/tagfile.cc index 23fc344f3..91653f602 100644 --- a/apt-pkg/tagfile.cc +++ b/apt-pkg/tagfile.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: tagfile.cc,v 1.12 1998/10/24 04:58:06 jgg Exp $ +// $Id: tagfile.cc,v 1.13 1998/10/30 07:53:41 jgg Exp $ /* ###################################################################### Fast scanner for RFC-822 type header information @@ -45,10 +45,7 @@ bool pkgTagFile::Step(pkgTagSection &Tag) return false; if (Tag.Scan(Start,End - Start) == false) - { - cout << string(Start,End-Start) << endl; return _error->Error("Unable to parse package file"); - } } Start += Tag.size(); iOffset += Tag.size(); @@ -87,10 +84,7 @@ bool pkgTagFile::Fill() else { if (Fd.Read(End,Size - (End - Buffer)) == false) - { - cout << "boink" << endl; return false; - } Left -= Size - (End - Buffer); End = Buffer + Size; |