From 0fde07d9fe626aa4ed570bf94f0c0d2ac4c24cd4 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Tue, 3 Mar 2015 10:58:54 +1100 Subject: [PATCH] Fixed some build errors in hellofs. --- samples/hellofs/hello_fs.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/samples/hellofs/hello_fs.go b/samples/hellofs/hello_fs.go index b7802d3..cb5dd9f 100644 --- a/samples/hellofs/hello_fs.go +++ b/samples/hellofs/hello_fs.go @@ -160,11 +160,11 @@ func (fs *HelloFS) LookUpInode( } // Copy over information. - resp.Child = childInode - resp.Attributes = gInodeInfo[childInode].attributes + resp.Entry.Child = childInode + resp.Entry.Attributes = gInodeInfo[childInode].attributes // Patch attributes. - fs.patchAttributes(&resp.Attributes) + fs.patchAttributes(&resp.Entry.Attributes) return }