]> git.saurik.com Git - apt.git/commitdiff
apt-pkg/pkgcachegen.cc: fix incorrect test for modification time
authorMichael Vogt <michael.vogt@ubuntu.com>
Mon, 8 Aug 2011 14:14:13 +0000 (16:14 +0200)
committerMichael Vogt <michael.vogt@ubuntu.com>
Mon, 8 Aug 2011 14:14:13 +0000 (16:14 +0200)
apt-pkg/pkgcachegen.cc

index 2bfb776095f4a1deda5190d2a073bf450eb209dd..7539e1b94d370018296e10b9841b06b7b02fe931 100644 (file)
@@ -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;