Skip to content

Commit a07fff5

Browse files
Fix log message in refnode.Lookup
Signed-off-by: Iain Macdonald <xiainx@gmail.com>
1 parent 7d8da24 commit a07fff5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

store/fs.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ func (n *refnode) Lookup(ctx context.Context, name string, out *fuse.EntryOut) (
241241
case *layernode:
242242
copyAttr(&out.Attr, &tn.attr)
243243
default:
244-
log.G(ctx).Warn("rootnode.Lookup: uknown node type detected")
244+
log.G(ctx).Warn("refnode.Lookup: uknown node type detected")
245245
return nil, syscall.EIO
246246
}
247247
out.Attr.Ino = cn.StableAttr().Ino

0 commit comments

Comments
 (0)