From ca5acae6f093f3e34d2a463d14f9ccc4e6d5096d Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sun, 12 Jul 2020 20:19:29 +0200 Subject: v2api: fix Mkfifo --- internal/fusefrontend/node.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/fusefrontend/node.go') 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 } -- cgit v1.2.3