summaryrefslogtreecommitdiff
path: root/apt-pkg
diff options
context:
space:
mode:
authorJulian Andres Klode <julian.klode@canonical.com>2020-08-10 15:39:33 +0200
committerJulian Andres Klode <julian.klode@canonical.com>2020-08-10 15:39:33 +0200
commit64b45e294f0c6931a9b57ae6cc99ecded8f6a2d3 (patch)
treeaf3c727a22aa619d569439e3b2b98b1978b7dacf /apt-pkg
parentf21440f5af98e1b5987e040a8f25bc3c2d6b7831 (diff)
Default Acquire::AllowReleaseInfoChange::Suite to "true"
Closes: #931566
Diffstat (limited to 'apt-pkg')
-rw-r--r--apt-pkg/acquire-item.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc
index 9b13a2483..820dc7b59 100644
--- a/apt-pkg/acquire-item.cc
+++ b/apt-pkg/acquire-item.cc
@@ -1810,7 +1810,7 @@ bool pkgAcqMetaBase::VerifyVendor(string const &) /*{{{*/
{ "Origin", AllowInfoChange, &metaIndex::GetOrigin },
{ "Label", AllowInfoChange, &metaIndex::GetLabel },
{ "Version", true, &metaIndex::GetVersion }, // numbers change all the time, that is okay
- { "Suite", AllowInfoChange, &metaIndex::GetSuite },
+ { "Suite", true, &metaIndex::GetSuite },
{ "Codename", AllowInfoChange, &metaIndex::GetCodename },
{ nullptr, false, nullptr }
};