1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-10-27 20:44:10 +00:00
falk-werner_webfuse-provider/src/wsfs/operation/ll_getattr.c

12 lines
264 B
C
Raw Normal View History

2019-02-02 10:45:38 +00:00
#include "wsfs/operations.h"
#include <errno.h>
#include "wsfs/util.h"
extern void wsfs_operation_ll_getattr (
fuse_req_t request,
fuse_ino_t WSFS_UNUSED_PARAM(inode),
struct fuse_file_info * WSFS_UNUSED_PARAM(file_info))
{
fuse_reply_err(request, ENOENT);
}