summaryrefslogtreecommitdiff
path: root/apt-pkg/deb/debsrcrecords.h
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:53:25 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:53:25 +0000
commit3782b88d989bd3895bcf53797c1ec8bfc163efe6 (patch)
tree774a8901b7416168c3a721494e7367233955e6fe /apt-pkg/deb/debsrcrecords.h
parent869f717abb4dbeba46d3ad11f9d6241470409ecd (diff)
Nother typo
Author: jgg Date: 1999-04-07 05:51:01 GMT Nother typo
Diffstat (limited to 'apt-pkg/deb/debsrcrecords.h')
-rw-r--r--apt-pkg/deb/debsrcrecords.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/apt-pkg/deb/debsrcrecords.h b/apt-pkg/deb/debsrcrecords.h
index 76a0e2c33..426b914e8 100644
--- a/apt-pkg/deb/debsrcrecords.h
+++ b/apt-pkg/deb/debsrcrecords.h
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: debsrcrecords.h,v 1.2 1999/04/04 08:07:39 jgg Exp $
+// $Id: debsrcrecords.h,v 1.3 1999/04/07 05:51:01 jgg Exp $
/* ######################################################################
Debian Source Package Records - Parser implementation for Debian style
@@ -40,7 +40,8 @@ class debSrcRecordParser : public pkgSrcRecords::Parser
virtual unsigned long Offset() {return iOffset;};
virtual bool Files(vector<pkgSrcRecords::File> &F);
- debSrcRecordParser(FileFd *File) : Parser(File),
+ debSrcRecordParser(FileFd *File,pkgSourceList::const_iterator SrcItem) :
+ Parser(File,SrcItem),
Tags(*File,sizeof(Buffer)) {};
};