1
0
mirror of https://github.com/restic/restic.git synced 2024-06-30 08:20:55 +02:00

Merge pull request #902 from jgfrm/issue893

storage of device id of files
This commit is contained in:
Alexander Neumann 2017-04-05 17:44:03 +02:00
commit 67a2ac292b

View File

@ -568,6 +568,7 @@ func (node *Node) fillExtra(path string, fi os.FileInfo) error {
}
node.Inode = uint64(stat.ino())
node.Device = uint64(stat.dev())
node.fillTimes(stat)