diff options
author | Michael Vogt <mvo@debian.org> | 2014-01-24 23:17:30 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-01-24 23:17:30 +0100 |
commit | 655af1e137385aa41c5505edc350111e9f8762ca (patch) | |
tree | 561869a35c89630ff2c6251dff549df768c0dd4e /apt-pkg/sourcelist.cc | |
parent | dcde2d749e01a3aa6b20222c689ee39de71e369a (diff) |
set APT::Sources::Use-Deb822 to default false for now
Diffstat (limited to 'apt-pkg/sourcelist.cc')
-rw-r--r-- | apt-pkg/sourcelist.cc | 2 |
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) |