1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-30 16:30:45 +00:00
falk-werner_webfuse-provider/src/wsfs/operation/ll_lookup.c

12 lines
243 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"
void wsfs_operation_ll_lookup (
fuse_req_t request,
fuse_ino_t WSFS_UNUSED_PARAM(parent),
char const * WSFS_UNUSED_PARAM(name))
{
fuse_reply_err(request, ENOENT);
}