Browse Source

fix compilation error

pull/114/head
chrislusf 10 years ago
parent
commit
43689146cc
  1. 7
      go/weed/mount_std.go

7
go/weed/mount_std.go

@ -4,7 +4,6 @@ package main
import ( import (
"fmt" "fmt"
"os"
"runtime" "runtime"
"bazil.org/fuse" "bazil.org/fuse"
@ -53,8 +52,7 @@ type File struct {
Name string Name string
} }
func (File) Attr() fuse.Attr {
return fuse.Attr{Mode: 0444}
func (File) Attr(attr *fuse.Attr) {
} }
func (File) ReadAll(ctx context.Context) ([]byte, error) { func (File) ReadAll(ctx context.Context) ([]byte, error) {
return []byte("hello, world\n"), nil return []byte("hello, world\n"), nil
@ -65,8 +63,7 @@ type Dir struct {
Id uint64 Id uint64
} }
func (dir Dir) Attr() fuse.Attr {
return fuse.Attr{Inode: dir.Id, Mode: os.ModeDir | 0555}
func (dir Dir) Attr(attr *fuse.Attr) {
} }
func (dir Dir) Lookup(ctx context.Context, name string) (fs.Node, error) { func (dir Dir) Lookup(ctx context.Context, name string) (fs.Node, error) {

Loading…
Cancel
Save