diff options
| author | Sebastian Lackner | 2019-01-03 18:11:07 +0100 | 
|---|---|---|
| committer | rfjakob | 2019-01-03 18:24:05 +0100 | 
| commit | a1ba4b6576695a3e680364813425ffd9c9c7c148 (patch) | |
| tree | a48631b16f47d006178f97770816569948e01319 /tests | |
| parent | 0414ef2572c3c07aa2a1b6dbb18a276a876c985a (diff) | |
Omit syscall.O_RDONLY flag when passing O_PATH.
When O_PATH is specified in flags, flag bits other than O_CLOEXEC, O_DIRECTORY,
and O_NOFOLLOW are ignored.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_helpers/helpers.go | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/tests/test_helpers/helpers.go b/tests/test_helpers/helpers.go index 9ff29a8..90eebdf 100644 --- a/tests/test_helpers/helpers.go +++ b/tests/test_helpers/helpers.go @@ -114,7 +114,7 @@ func ResetTmpDir(createDirIV bool) {  	}  	if createDirIV {  		// Open cipherdir (following symlinks) -		dirfd, err := syscall.Open(DefaultCipherDir, syscall.O_RDONLY|syscall.O_DIRECTORY|syscallcompat.O_PATH, 0) +		dirfd, err := syscall.Open(DefaultCipherDir, syscall.O_DIRECTORY|syscallcompat.O_PATH, 0)  		if err == nil {  			err = nametransform.WriteDirIVAt(dirfd)  			syscall.Close(dirfd) | 
