LookUpInodeOp.respond

geesefs-0-30-9
Aaron Jacobs 2015-07-22 22:23:47 +10:00
parent 2366f698e2
commit 2c1ba6d729
1 changed files with 2 additions and 3 deletions

View File

@ -89,12 +89,11 @@ func (o *LookUpInodeOp) ShortDesc() (desc string) {
return
}
func (o *LookUpInodeOp) toBazilfuseResponse() (bfResp interface{}) {
func (o *LookUpInodeOp) respond() {
resp := bazilfuse.LookupResponse{}
bfResp = &resp
convertChildInodeEntry(&o.Entry, &resp)
o.bfReq.Respond(&resp)
return
}