summaryrefslogtreecommitdiff
path: root/apt-pkg/deb/debsrcrecords.h
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 17:06:06 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 17:06:06 +0000
commitc33b707e5dbfced74e5dd02f663bc88210ddb94b (patch)
tree411ba2b0a6fdc698f330ab7d83419866a9afd5c0 /apt-pkg/deb/debsrcrecords.h
parent1b48091148e1f423a834d3218dbe024df34932b5 (diff)
* Implement an ugly workaround for the 10000-character ...
Author: mdz Date: 2004-03-17 05:58:54 GMT * Implement an ugly workaround for the 10000-character limit on the Binaries field in debSrcRecordParser, until such time as some things can be converted over to use STL data types (ABI change) (Closes: #236688) * Increase default tagfile buffer from 32k to 128k; this arbitrary limit should also be removed someday (Closes: #174945)
Diffstat (limited to 'apt-pkg/deb/debsrcrecords.h')
-rw-r--r--apt-pkg/deb/debsrcrecords.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/deb/debsrcrecords.h b/apt-pkg/deb/debsrcrecords.h
index a49734795..f899993df 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.7 2001/11/04 17:09:18 tausq Exp $
+// $Id: debsrcrecords.h,v 1.8 2004/03/17 05:58:54 mdz Exp $
/* ######################################################################
Debian Source Package Records - Parser implementation for Debian style
@@ -52,7 +52,7 @@ class debSrcRecordParser : public pkgSrcRecords::Parser
debSrcRecordParser(string File,pkgIndexFile const *Index) :
Parser(Index),
Fd(File,FileFd::ReadOnly),
- Tags(&Fd,sizeof(Buffer)) {};
+ Tags(&Fd,102400) {};
};
#endif