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

16 lines
284 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"
2019-02-02 13:25:57 +00:00
#include <stdio.h>
2019-02-02 10:45:38 +00:00
void wsfs_operation_ll_lookup (
fuse_req_t request,
2019-02-02 13:25:57 +00:00
fuse_ino_t parent,
char const * name)
2019-02-02 10:45:38 +00:00
{
2019-02-02 13:25:57 +00:00
printf("lookup: inode=%lu, name=%s\n", parent, name);
2019-02-02 10:45:38 +00:00
fuse_reply_err(request, ENOENT);
}