mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
12 lines
264 B
C
12 lines
264 B
C
|
#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);
|
||
|
}
|