summaryrefslogtreecommitdiff
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
parent60a9e375317c42f6682704e2769b7b2776c7ec12 (diff)
* apt-pkg/tagfile.h:
- increase the buffer in tagfile.cc for now, this really needs to become a dynamic buffer
-rw-r--r--apt-pkg/tagfile.h2
-rw-r--r--debian/changelog2
2 files changed, 3 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();
};
diff --git a/debian/changelog b/debian/changelog
index db84bc65a..77c7cf698 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -13,6 +13,8 @@ apt (0.6.46.1) unstable; urgency=low
* fi.po: Updated to 514t. Closes: #390149
* eu.po: Updated to 514t. Closes: #389725
* vi.po: Updated to 514t. Closes: #388555
+ * use a bigger buffer in tagfile for now, this needs to
+ become much more dynamic (closes: #388708)
--