diff options
author | 2018-12-09 17:59:39 -0800 | |
---|---|---|
committer | 2018-12-09 17:59:39 -0800 | |
commit | 59d8e9b95eddc6b74b76bfc0bd8b786750e800a6 (patch) | |
tree | 5b2379ea736b7bb94e2fc0d492e86b04f32a8d2b /vendor/golang.org/x/sys/unix/sockcmsg_unix.go | |
parent | 61bfb3cfa8857a144460d05330c1d1fccded960b (diff) | |
download | v2-59d8e9b95eddc6b74b76bfc0bd8b786750e800a6.tar.gz v2-59d8e9b95eddc6b74b76bfc0bd8b786750e800a6.tar.zst v2-59d8e9b95eddc6b74b76bfc0bd8b786750e800a6.zip |
Update dependencies
Diffstat (limited to 'vendor/golang.org/x/sys/unix/sockcmsg_unix.go')
-rw-r--r-- | vendor/golang.org/x/sys/unix/sockcmsg_unix.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/golang.org/x/sys/unix/sockcmsg_unix.go b/vendor/golang.org/x/sys/unix/sockcmsg_unix.go index bb756ece..9dd2f32f 100644 --- a/vendor/golang.org/x/sys/unix/sockcmsg_unix.go +++ b/vendor/golang.org/x/sys/unix/sockcmsg_unix.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build darwin dragonfly freebsd linux netbsd openbsd solaris +// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris // Socket control messages @@ -12,7 +12,7 @@ import "unsafe" // Round the length of a raw sockaddr up to align it properly. func cmsgAlignOf(salen int) int { - salign := sizeofPtr + salign := SizeofPtr // NOTE: It seems like 64-bit Darwin, DragonFly BSD and // Solaris kernels still require 32-bit aligned access to // network subsystem. |