mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-25 01:06:50 +00:00
Merge pull request #1614 from ThomasWaldmann/trivial-changes
trivial code optimization
This commit is contained in:
commit
eac439a65f
1 changed files with 1 additions and 1 deletions
|
@ -642,7 +642,7 @@ def process_file(self, path, st, cache, ignore_inode=False):
|
|||
# Is it a hard link?
|
||||
if st.st_nlink > 1:
|
||||
source = self.hard_links.get((st.st_ino, st.st_dev))
|
||||
if (st.st_ino, st.st_dev) in self.hard_links:
|
||||
if source is not None:
|
||||
item = self.stat_attrs(st, path)
|
||||
item.update({b'path': safe_path, b'source': source})
|
||||
self.add_item(item)
|
||||
|
|
Loading…
Reference in a new issue