Show More
@@ -472,8 +472,9 b' class dirstate(object):' | |||||
472 | if type_ == 'n': |
|
472 | if type_ == 'n': | |
473 | if not st: |
|
473 | if not st: | |
474 | st = os.lstat(self.wjoin(fn)) |
|
474 | st = os.lstat(self.wjoin(fn)) | |
475 | if size >= 0 and (size != st.st_size |
|
475 | if (size >= 0 and (size != st.st_size | |
476 |
or (mode ^ st.st_mode) & 0100) |
|
476 | or (mode ^ st.st_mode) & 0100) | |
|
477 | or fn in self._copymap): | |||
477 | modified.append(fn) |
|
478 | modified.append(fn) | |
478 | elif time != int(st.st_mtime): |
|
479 | elif time != int(st.st_mtime): | |
479 | lookup.append(fn) |
|
480 | lookup.append(fn) |
General Comments 0
You need to be logged in to leave comments.
Login now