Commit 32ca2d1e authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

Add nil as address to Recvmsg argument.

Recvmsg is not fixed yet in Go release Dec 27 .
parent 19ee3a9f
...@@ -127,7 +127,7 @@ func getFuseConn(local *os.File) (f *os.File, err os.Error) { ...@@ -127,7 +127,7 @@ func getFuseConn(local *os.File) (f *os.File, err os.Error) {
// n, oobn, recvflags - todo: error checking. // n, oobn, recvflags - todo: error checking.
_, oobn, _, _, oobn, _,
errno := syscall.Recvmsg( errno := syscall.Recvmsg(
local.Fd(), data[:], control[:], 0) local.Fd(), data[:], control[:], nil, 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