summaryrefslogtreecommitdiff
path: root/ftparchive
diff options
context:
space:
mode:
authorMichael Vogt <mvo@debian.org>2014-04-25 14:41:35 +0200
committerMichael Vogt <mvo@debian.org>2014-04-25 14:50:39 +0200
commit6c50447eb443768764f83b3ba86ef32780ba6dde (patch)
tree7ac40ab4ee01f42b2e120042aafbf7c32d01a61c /ftparchive
parent506ab3c78fb67f5e452a1748f4870af767de5ebb (diff)
reduce delta from ubuntu
Diffstat (limited to 'ftparchive')
-rw-r--r--ftparchive/override.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ftparchive/override.cc b/ftparchive/override.cc
index b4cd49b6c..8a0c5bab1 100644
--- a/ftparchive/override.cc
+++ b/ftparchive/override.cc
@@ -37,7 +37,7 @@ bool Override::ReadOverride(string const &File,bool const &Source)
if (F == 0)
return _error->Errno("fopen",_("Unable to open %s"),File.c_str());
- char Line[500];
+ char Line[1000];
unsigned long long Counter = 0;
while (fgets(Line,sizeof(Line),F) != 0)
{
@@ -141,7 +141,7 @@ bool Override::ReadExtraOverride(string const &File,bool const &/*Source*/)
if (F == 0)
return _error->Errno("fopen",_("Unable to open %s"),File.c_str());
- char Line[500];
+ char Line[1000];
unsigned long long Counter = 0;
while (fgets(Line,sizeof(Line),F) != 0)
{