summaryrefslogtreecommitdiff
path: root/apt-pkg
diff options
context:
space:
mode:
authorDavid Kalnischkies <kalnischkies@gmail.com>2011-09-05 14:50:30 +0200
committerDavid Kalnischkies <kalnischkies@gmail.com>2011-09-05 14:50:30 +0200
commit884a4c0a3a6cba654e77478a086f26539bc5bd32 (patch)
tree97c2aeedf0e53478784e9d797108fe30e0e84669 /apt-pkg
parent05b64a6f78e3bf39142808a3dae41a2c4618f6b0 (diff)
* apt-pkg/indexrecords.cc:
- fix Acquire::Max-ValidTime option by interpreting it really as seconds as specified in the manpage and not as days
Diffstat (limited to 'apt-pkg')
-rw-r--r--apt-pkg/indexrecords.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/indexrecords.cc b/apt-pkg/indexrecords.cc
index 10e154ad2..7852b99f0 100644
--- a/apt-pkg/indexrecords.cc
+++ b/apt-pkg/indexrecords.cc
@@ -113,7 +113,7 @@ bool indexRecords::Load(const string Filename) /*{{{*/
}
// get the user settings for this archive and use what expires earlier
int MaxAge = _config->FindI("Acquire::Max-ValidTime", 0);
- if (Label.empty() == true)
+ if (Label.empty() == false)
MaxAge = _config->FindI(string("Acquire::Max-ValidTime::" + Label).c_str(), MaxAge);
if(MaxAge == 0) // No user settings, use the one from the Release file
@@ -125,7 +125,7 @@ bool indexRecords::Load(const string Filename) /*{{{*/
strprintf(ErrorText, _("Invalid 'Date' entry in Release file %s"), Filename.c_str());
return false;
}
- date += 24*60*60*MaxAge;
+ date += MaxAge;
if (ValidUntil == 0 || ValidUntil > date)
ValidUntil = date;