diff options
author | Michael Vogt <egon@debian-devbox> | 2011-08-15 09:23:39 +0200 |
---|---|---|
committer | Michael Vogt <egon@debian-devbox> | 2011-08-15 09:23:39 +0200 |
commit | a288748e481c707127b416439407eb613cd12a8a (patch) | |
tree | 99f948214a2eca57f47a20249c3069ceb92f8954 /apt-pkg/pkgcachegen.cc | |
parent | ea50fdfe2fc21757412baf448b2d41b3ce34b626 (diff) | |
parent | 629b60f6feea2d2d356645aa2615b212481bd3d8 (diff) |
merged fixes from lp:~mvo/apt/mvo
Diffstat (limited to 'apt-pkg/pkgcachegen.cc')
-rw-r--r-- | apt-pkg/pkgcachegen.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/pkgcachegen.cc b/apt-pkg/pkgcachegen.cc index 8a7c1e979..dc5a830bd 100644 --- a/apt-pkg/pkgcachegen.cc +++ b/apt-pkg/pkgcachegen.cc @@ -935,7 +935,7 @@ static bool CheckValidity(const string &CacheFile, return false; } - if (List.GetLastModifiedTime() < GetModificationTime(CacheFile)) + if (List.GetLastModifiedTime() > GetModificationTime(CacheFile)) { if (Debug == true) std::clog << "sources.list is newer than the cache" << std::endl; |