forked from TrueCloudLab/restic
b402e8a6fc
Use O_DIRECTORY to prevent opening any other than a directory in readdirnames.
12 lines
215 B
Go
12 lines
215 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package fs
|
|
|
|
// TODO honor flags when opening files
|
|
|
|
// O_NOFOLLOW is a noop on Windows.
|
|
const O_NOFOLLOW int = 0
|
|
|
|
// O_DIRECTORY is a noop on Windows.
|
|
const O_DIRECTORY int = 0
|