1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-30 18:20:46 +00:00
falk-werner_webfuse-provider/src/wsfs/operation/ll_lookup.c
2019-02-02 11:45:38 +01:00

12 lines
243 B
C

#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);
}