diff options
| author | Jakob Unterwurzacher | 2020-07-12 20:19:29 +0200 | 
|---|---|---|
| committer | Jakob Unterwurzacher | 2020-07-12 20:19:29 +0200 | 
| commit | ca5acae6f093f3e34d2a463d14f9ccc4e6d5096d (patch) | |
| tree | 2a32b2bdbd3357637f87a0930069f628d463a3b8 | |
| parent | 0fa824933cfc8788450138a2d2e52c3dea2e592f (diff) | |
v2api: fix Mkfifo
| -rw-r--r-- | internal/fusefrontend/node.go | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/internal/fusefrontend/node.go b/internal/fusefrontend/node.go index b03829e..408bfea 100644 --- a/internal/fusefrontend/node.go +++ b/internal/fusefrontend/node.go @@ -387,7 +387,7 @@ func (n *Node) Statfs(ctx context.Context, out *fuse.StatfsOut) syscall.Errno {  //  // Symlink-safe through use of Mknodat().  func (n *Node) Mknod(ctx context.Context, name string, mode, rdev uint32, out *fuse.EntryOut) (inode *fs.Inode, errno syscall.Errno) { -	dirfd, cName, errno := n.prepareAtSyscall("") +	dirfd, cName, errno := n.prepareAtSyscall(name)  	if errno != 0 {  		return  	} | 
