diff options
author | Sebastian Lackner | 2017-11-29 13:21:28 +0100 |
---|---|---|
committer | Sebastian Lackner | 2017-11-29 13:28:04 +0100 |
commit | 614745ee576760023961fbf815985b90f90ad1d7 (patch) | |
tree | d2577781a64df82303ed569c95cfb9a658fae5f6 /init_dir.go | |
parent | 67bcbe81e80da29fb340c5a4712831f70442d8c9 (diff) |
fusefrontend: allow_other: close race between mkdir and chown
Fixes the same problem as described in 72b975867a3b9bdf53fc2da62e2ba4a328d7e4ab,
except for directories instead of device nodes.
Diffstat (limited to 'init_dir.go')
-rw-r--r-- | init_dir.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init_dir.go b/init_dir.go index f057bf4..791f7d1 100644 --- a/init_dir.go +++ b/init_dir.go @@ -47,7 +47,7 @@ func initDir(args *argContainer) { // Forward mode with filename encryption enabled needs a gocryptfs.diriv // in the root dir if !args.plaintextnames && !args.reverse { - err = nametransform.WriteDirIV(args.cipherdir) + err = nametransform.WriteDirIV(nil, args.cipherdir) if err != nil { tlog.Fatal.Println(err) os.Exit(exitcodes.Init) |