diff options
author | Duco van Amstel <helcaraxan@gmail.com> | 2018-11-18 00:28:29 +0000 |
---|---|---|
committer | Duco van Amstel <helcaraxan@gmail.com> | 2018-11-18 01:10:15 +0000 |
commit | 692bb8faa7c4000953b0622a77126193f8fd0383 (patch) | |
tree | b0966b9aa86eb8d02d423221bed21893959de4eb /vendor/golang.org/x/sys/unix/sockcmsg_unix.go | |
parent | 455a0fc2394ea52955ed386663ded9a9dceab83f (diff) | |
download | matterbridge-msglm-692bb8faa7c4000953b0622a77126193f8fd0383.tar.gz matterbridge-msglm-692bb8faa7c4000953b0622a77126193f8fd0383.tar.bz2 matterbridge-msglm-692bb8faa7c4000953b0622a77126193f8fd0383.zip |
Upgrade logrus / testify to stable versions
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. |