diff options
| -rw-r--r-- | trunk/ChangeLog | 5 | ||||
| -rwxr-xr-x | trunk/src/equery/equery | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/trunk/ChangeLog b/trunk/ChangeLog index 5e3cb9f..4ec5c13 100644 --- a/trunk/ChangeLog +++ b/trunk/ChangeLog @@ -1,3 +1,8 @@ +2008-07-24: Paul Varner <fuzzyray@gentoo.org> + * equery: Fix equery check to convert mtime to an integer so that + comparisions always work. Thanks to Alexey Parshin for discovering the + problem and providing a patch. (Bug 232803) + 2008-07-22: Paul Varner <fuzzyray@gentoo.org> * gentoolkit: Fix gentoolkit.split_package_name to work with newer portage.catpkgsplit that now returns a tuple instead of a diff --git a/trunk/src/equery/equery b/trunk/src/equery/equery index 9d8f876..ed8c5c4 100755 --- a/trunk/src/equery/equery +++ b/trunk/src/equery/equery @@ -976,7 +976,7 @@ class CmdCheckIntegrity(Command): if self.getMD5sum(file) != md5sum: raise CheckException(file + " has incorrect md5sum") if opts["checkTimestamp"]: - if st.st_mtime != int(mtime): + if int(st.st_mtime) != int(mtime): raise CheckException(file + (" has wrong mtime (is %d, should be %s)" % (st.st_mtime, mtime))) elif type == "sym": # FIXME: nastry strippery; portage should have this fixed! |
