forked from TrueCloudLab/restic
fs: fix comments
This commit is contained in:
parent
6c16733dfd
commit
2aa1e2615b
2 changed files with 3 additions and 3 deletions
|
@ -130,12 +130,12 @@ func (fs *LocalVss) OpenFile(name string, flag int, perm os.FileMode) (File, err
|
||||||
return os.OpenFile(fs.snapshotPath(name), flag, perm)
|
return os.OpenFile(fs.snapshotPath(name), flag, perm)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Stat wraps the Open method of the underlying file system.
|
// Stat wraps the Stat method of the underlying file system.
|
||||||
func (fs *LocalVss) Stat(name string) (os.FileInfo, error) {
|
func (fs *LocalVss) Stat(name string) (os.FileInfo, error) {
|
||||||
return os.Stat(fs.snapshotPath(name))
|
return os.Stat(fs.snapshotPath(name))
|
||||||
}
|
}
|
||||||
|
|
||||||
// Lstat wraps the Open method of the underlying file system.
|
// Lstat wraps the Lstat method of the underlying file system.
|
||||||
func (fs *LocalVss) Lstat(name string) (os.FileInfo, error) {
|
func (fs *LocalVss) Lstat(name string) (os.FileInfo, error) {
|
||||||
return os.Lstat(fs.snapshotPath(name))
|
return os.Lstat(fs.snapshotPath(name))
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,7 @@ import (
|
||||||
"github.com/restic/restic/internal/errors"
|
"github.com/restic/restic/internal/errors"
|
||||||
)
|
)
|
||||||
|
|
||||||
// CommandReader wrap a command such that its standard output can be read using
|
// CommandReader wraps a command such that its standard output can be read using
|
||||||
// a io.ReadCloser. Close() waits for the command to terminate, reporting
|
// a io.ReadCloser. Close() waits for the command to terminate, reporting
|
||||||
// any error back to the caller.
|
// any error back to the caller.
|
||||||
type CommandReader struct {
|
type CommandReader struct {
|
||||||
|
|
Loading…
Reference in a new issue