forked from TrueCloudLab/restic
Call open file once on FreeBSD.
This commit is contained in:
parent
a1c8dac561
commit
a8be9c32d0
1 changed files with 1 additions and 5 deletions
|
@ -7,11 +7,7 @@ import (
|
|||
)
|
||||
|
||||
func (node *Node) OpenForReading() (*os.File, error) {
|
||||
file, err := os.OpenFile(node.path, os.O_RDONLY, 0)
|
||||
if os.IsPermission(err) {
|
||||
return os.OpenFile(node.path, os.O_RDONLY, 0)
|
||||
}
|
||||
return file, err
|
||||
return os.OpenFile(node.path, os.O_RDONLY, 0)
|
||||
}
|
||||
|
||||
func (node *Node) fillTimes(stat *syscall.Stat_t) {
|
||||
|
|
Loading…
Reference in a new issue