mirror of
https://github.com/octoleo/restic.git
synced 2024-11-23 13:17:42 +00:00
Moved assignment of device id outside the switch
This commit is contained in:
parent
c855d6bb9a
commit
6674b2a70c
@ -568,6 +568,7 @@ func (node *Node) fillExtra(path string, fi os.FileInfo) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
node.Inode = uint64(stat.ino())
|
node.Inode = uint64(stat.ino())
|
||||||
|
node.Device = uint64(stat.dev())
|
||||||
|
|
||||||
node.fillTimes(stat)
|
node.fillTimes(stat)
|
||||||
|
|
||||||
@ -581,7 +582,6 @@ func (node *Node) fillExtra(path string, fi os.FileInfo) error {
|
|||||||
case "file":
|
case "file":
|
||||||
node.Size = uint64(stat.size())
|
node.Size = uint64(stat.size())
|
||||||
node.Links = uint64(stat.nlink())
|
node.Links = uint64(stat.nlink())
|
||||||
node.Device = uint64(stat.dev())
|
|
||||||
case "dir":
|
case "dir":
|
||||||
case "symlink":
|
case "symlink":
|
||||||
node.LinkTarget, err = fs.Readlink(path)
|
node.LinkTarget, err = fs.Readlink(path)
|
||||||
|
Loading…
Reference in New Issue
Block a user