dll: fuse: remove dll/fuse/shared.h

This commit is contained in:
Bill Zissimopoulos
2018-07-16 14:21:57 -07:00
parent 27d03d4323
commit 3dc09b2496
7 changed files with 37 additions and 63 deletions

View File

@ -266,7 +266,7 @@ loopend:;
if (0 != f->ops.getattr)
err = f->ops.getattr(PosixHiddenPath, (void *)&stbuf);
else
err = -enosys(f->env);
err = -ENOSYS_(f->env);
} while (0 == err && 0 < --maxtries);
if (0 == err)
@ -308,7 +308,7 @@ static BOOLEAN fsp_fuse_intf_CheckSymlinkDirectory(FSP_FILE_SYSTEM *FileSystem,
if (0 != f->ops.getattr)
err = f->ops.getattr(PosixDotPath, (void *)&stbuf);
else
err = -enosys(f->env);
err = -ENOSYS_(f->env);
MemFree(PosixDotPath);