Commit 98d44d14 authored by Dave Cheney's avatar Dave Cheney

syscall: fix FD passing on FreeBSD and NetBSD

Fixes #3348.

R=devon.odell, minux.ma, bradfitz, mdempsky
CC=golang-dev
https://golang.org/cl/7406050
parent c8c16cfb
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
// +build linux darwin // +build linux darwin freebsd netbsd
package syscall_test package syscall_test
......
...@@ -37,7 +37,7 @@ func CmsgSpace(datalen int) int { ...@@ -37,7 +37,7 @@ func CmsgSpace(datalen int) int {
} }
func cmsgData(h *Cmsghdr) unsafe.Pointer { func cmsgData(h *Cmsghdr) unsafe.Pointer {
return unsafe.Pointer(uintptr(unsafe.Pointer(h)) + SizeofCmsghdr) return unsafe.Pointer(uintptr(unsafe.Pointer(h)) + uintptr(cmsgAlignOf(SizeofCmsghdr)))
} }
// SocketControlMessage represents a socket control message. // SocketControlMessage represents a socket control message.
......
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