Commit 9d51ae3f authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

Update for new go release.

parent ce1a82ae
...@@ -96,10 +96,10 @@ func getFuseConn(local *os.File) (f *os.File, err os.Error) { ...@@ -96,10 +96,10 @@ func getFuseConn(local *os.File) (f *os.File, err os.Error) {
var data [4]byte var data [4]byte
control := make([]byte, 4*256) control := make([]byte, 4*256)
// n, oobn, recvflags - todo: error checking. // n, oobn, recvflags, from, errno - todo: error checking.
_, oobn, _, _, oobn, _, _,
errno := syscall.Recvmsg( errno := syscall.Recvmsg(
local.Fd(), data[:], control[:], nil, 0) local.Fd(), data[:], control[:], 0)
if errno != 0 { if errno != 0 {
return return
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment