mercurial/mdiff.py
changeset 6871 13fe85fe396b
parent 6470 ac0bcd951c2c
child 7200 ca5ac40949dc
--- a/mercurial/mdiff.py	Fri Aug 08 18:49:55 2008 +0200
+++ b/mercurial/mdiff.py	Sat Aug 09 02:10:22 2008 +0200
@@ -78,10 +78,7 @@
     epoch = util.datestr((0, 0))
 
     if not opts.text and (util.binary(a) or util.binary(b)):
-        def h(v):
-            # md5 is used instead of sha1 because md5 is supposedly faster
-            return util.md5(v).digest()
-        if a and b and len(a) == len(b) and h(a) == h(b):
+        if a and b and len(a) == len(b) and a == b:
             return ""
         l = ['Binary file %s has changed\n' % fn1]
     elif not a: