In the second (i.e. non-empty) implementation of `getattr`, the result is: ``` reply.error(ENOSYS); ``` but it should be: ``` reply.error(ENOENT); ``` We want a 'File not found' rather than a 'Function not implemented' message.
In the second (i.e. non-empty) implementation of
getattr, the result is:but it should be:
We want a 'File not found' rather than a 'Function not implemented' message.