Browse Source

fuse.cpp

tests
Antonio SJ Musumeci 5 days ago
parent
commit
550bf2d212
  1. 3
      libfuse/lib/fuse.cpp

3
libfuse/lib/fuse.cpp

@ -1480,8 +1480,9 @@ fuse_lib_getattr(fuse_req_t *req_,
if(!err)
{
fmt::print("getattr: fh={}; fusepath={};\n",
fh,fusepath);
fh,fusepath ? fusepath : "(null)");
err = ((fusepath != NULL) ?
f.ops.getattr(&req_->ctx,&fusepath[1],&buf,&timeout) :
f.ops.fgetattr(&req_->ctx,fh,&buf,&timeout));

Loading…
Cancel
Save