mirror of
https://github.com/restic/restic.git
synced 2025-01-03 13:45:20 +00:00
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) {
|
func (node *Node) OpenForReading() (*os.File, error) {
|
||||||
file, err := os.OpenFile(node.path, os.O_RDONLY, 0)
|
return os.OpenFile(node.path, os.O_RDONLY, 0)
|
||||||
if os.IsPermission(err) {
|
|
||||||
return os.OpenFile(node.path, os.O_RDONLY, 0)
|
|
||||||
}
|
|
||||||
return file, err
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (node *Node) fillTimes(stat *syscall.Stat_t) {
|
func (node *Node) fillTimes(stat *syscall.Stat_t) {
|
||||||
|
|
Loading…
Reference in a new issue