diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-12-02 19:39:12 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-12-02 19:39:12 +0000 |
commit | 073f88c1bf9c665bddc683249552c5d14b86f345 (patch) | |
tree | 0e68f8574152a97a402b01c6c26322a3abf5903a /pkg/sentry/socket/unix/unix_vfs2.go | |
parent | 6e7abae1422faede10414432c3cfa13b24957466 (diff) | |
parent | 1375a87a209ef1a2523ada84254e3a0101afb4f5 (diff) |
Merge release-20201117.0-97-g1375a87a2 (automated)
Diffstat (limited to 'pkg/sentry/socket/unix/unix_vfs2.go')
-rw-r--r-- | pkg/sentry/socket/unix/unix_vfs2.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/socket/unix/unix_vfs2.go b/pkg/sentry/socket/unix/unix_vfs2.go index eaf0b0d26..27f705bb2 100644 --- a/pkg/sentry/socket/unix/unix_vfs2.go +++ b/pkg/sentry/socket/unix/unix_vfs2.go @@ -172,7 +172,7 @@ func (s *SocketVFS2) Accept(t *kernel.Task, peerRequested bool, flags int, block var addr linux.SockAddr var addrLen uint32 if peerAddr != nil { - addr, addrLen = netstack.ConvertAddress(linux.AF_UNIX, *peerAddr) + addr, addrLen = socket.ConvertAddress(linux.AF_UNIX, *peerAddr) } fd, e := t.NewFDFromVFS2(0, ns, kernel.FDFlags{ |