summaryrefslogtreecommitdiff
path: root/apt-pkg/sourcelist.cc
diff options
context:
space:
mode:
authorMichael Vogt <mvo@debian.org>2014-01-24 23:17:30 +0100
committerMichael Vogt <mvo@debian.org>2014-01-24 23:17:30 +0100
commit655af1e137385aa41c5505edc350111e9f8762ca (patch)
tree561869a35c89630ff2c6251dff549df768c0dd4e /apt-pkg/sourcelist.cc
parentdcde2d749e01a3aa6b20222c689ee39de71e369a (diff)
set APT::Sources::Use-Deb822 to default false for now
Diffstat (limited to 'apt-pkg/sourcelist.cc')
-rw-r--r--apt-pkg/sourcelist.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/sourcelist.cc b/apt-pkg/sourcelist.cc
index bbc514f5b..ac326d157 100644
--- a/apt-pkg/sourcelist.cc
+++ b/apt-pkg/sourcelist.cc
@@ -297,7 +297,7 @@ bool pkgSourceList::Read(string File)
/* */
bool pkgSourceList::ReadAppend(string File)
{
- if (_config->FindB("APT::Sources::Use-Deb822", true) == true)
+ if (_config->FindB("APT::Sources::Use-Deb822", false) == true)
{
int lines_parsed =ParseFileDeb822(File);
if (lines_parsed < 0)