blob: 48287e6e830f1ce16d1ce9ea615158b4091b02ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "abstractDynamicDirectory.h"
#include <sys/stat.h>
#include <exceptions.h>
namespace MythFS {
NetFS::Attr
AbstractDynamicDirectory::getattr() const
{
return {
0, 0,
S_IRUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH | S_IFDIR,
1, "root", "root", 0, 0, 0, 0, 0, 0, 0
};
}
}
|