Added attributes for the root inode.

geesefs-0-30-9
Aaron Jacobs 2015-02-27 13:36:20 +11:00
parent e57dade603
commit 85d95b742c
1 changed files with 4 additions and 1 deletions

View File

@ -32,6 +32,8 @@ const (
) )
type inodeInfo struct { type inodeInfo struct {
attributes fuse.InodeAttributes
// File or directory? // File or directory?
dir bool dir bool
@ -43,7 +45,8 @@ type inodeInfo struct {
var gInodeInfo = map[fuse.InodeID]inodeInfo{ var gInodeInfo = map[fuse.InodeID]inodeInfo{
// root // root
rootInode: inodeInfo{ rootInode: inodeInfo{
dir: true, attributes: fuse.InodeAttributes{},
dir: true,
children: []fuseutil.Dirent{ children: []fuseutil.Dirent{
fuseutil.Dirent{ fuseutil.Dirent{
Offset: 1, Offset: 1,