summaryrefslogtreecommitdiff
path: root/apt-pkg/tagfile.h
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-09-30 22:50:41 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2006-09-30 22:50:41 +0200
commitc407612f82f02ed97ec879e48e3cd1c187b4f5ea (patch)
tree98c19390c3d086c1663e31c622e61105efe89769 /apt-pkg/tagfile.h
parent60a9e375317c42f6682704e2769b7b2776c7ec12 (diff)
* apt-pkg/tagfile.h:
- increase the buffer in tagfile.cc for now, this really needs to become a dynamic buffer
Diffstat (limited to 'apt-pkg/tagfile.h')
-rw-r--r--apt-pkg/tagfile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/tagfile.h b/apt-pkg/tagfile.h
index f7f8155a5..35ffebda8 100644
--- a/apt-pkg/tagfile.h
+++ b/apt-pkg/tagfile.h
@@ -84,7 +84,7 @@ class pkgTagFile
inline unsigned long Offset() {return iOffset;};
bool Jump(pkgTagSection &Tag,unsigned long Offset);
- pkgTagFile(FileFd *F,unsigned long Size = 64*1024);
+ pkgTagFile(FileFd *F,unsigned long Size = 128*1024);
~pkgTagFile();
};