diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2010-06-09 10:46:35 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2010-06-09 10:46:35 +0200 |
commit | b02fffa64833e1f8e2617669d89de0a6d0882747 (patch) | |
tree | 0d3289bf1d913ee9d2313e0fcae6071f943d43bc /apt-pkg/indexrecords.cc | |
parent | 96cc64a521957d63704de72ed95f1c839698c53c (diff) |
rename the options, document them and reorder the changelog a bit
Diffstat (limited to 'apt-pkg/indexrecords.cc')
-rw-r--r-- | apt-pkg/indexrecords.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/indexrecords.cc b/apt-pkg/indexrecords.cc index cdc2897bf..3bde7437d 100644 --- a/apt-pkg/indexrecords.cc +++ b/apt-pkg/indexrecords.cc @@ -104,9 +104,9 @@ bool indexRecords::Load(const string Filename) /*{{{*/ } } // get the user settings for this archive and use what expires earlier - int MaxAge = _config->FindI("APT::Acquire::Max-Default-Age", 0); + int MaxAge = _config->FindI("Acquire::Max-ValidTime", 0); if (Label.empty() == true) - MaxAge = _config->FindI(string("APT::Acquire::Max-Default-Age::" + Label).c_str(), MaxAge); + MaxAge = _config->FindI(string("Acquire::Max-ValidTime::" + Label).c_str(), MaxAge); if(MaxAge == 0) // No user settings, use the one from the Release file return true; |