##// END OF EJS Templates
Fix theoretical issue in filecommit....
Alexis S. L. Carvalho -
r5228:8050f137 default
parent child Browse files
Show More
@@ -626,7 +626,7 b' class localrepository(repo.repository):'
626 fp2 = nullid
626 fp2 = nullid
627
627
628 # is the file unmodified from the parent? report existing entry
628 # is the file unmodified from the parent? report existing entry
629 if fp2 == nullid and not fl.cmp(fp1, t):
629 if fp2 == nullid and not fl.cmp(fp1, t) and not meta:
630 return fp1
630 return fp1
631
631
632 changelist.append(fn)
632 changelist.append(fn)
General Comments 0
You need to be logged in to leave comments. Login now