diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-06-28 00:31:52 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-06-28 00:31:52 +0000 |
commit | e3abe5ebdf5e0c98429faee7d57d126d452f7293 (patch) | |
tree | 607552989592a141c1fb317008208015b95363f5 /pkg/sentry/socket/unix | |
parent | 91dcb2483b56eeb8083cdff90ed8e8f0a1665d13 (diff) | |
parent | b2907595e5e974d2b011ea011033aa06d796e090 (diff) |
Merge b2907595 (automated)
Diffstat (limited to 'pkg/sentry/socket/unix')
-rw-r--r-- | pkg/sentry/socket/unix/unix.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/socket/unix/unix.go b/pkg/sentry/socket/unix/unix.go index 5fc43db8c..6190de0c5 100644 --- a/pkg/sentry/socket/unix/unix.go +++ b/pkg/sentry/socket/unix/unix.go @@ -152,7 +152,7 @@ func (s *SocketOperations) GetSockName(t *kernel.Task) (interface{}, uint32, *sy } // Ioctl implements fs.FileOperations.Ioctl. -func (s *SocketOperations) Ioctl(ctx context.Context, io usermem.IO, args arch.SyscallArguments) (uintptr, error) { +func (s *SocketOperations) Ioctl(ctx context.Context, _ *fs.File, io usermem.IO, args arch.SyscallArguments) (uintptr, error) { return epsocket.Ioctl(ctx, s.ep, io, args) } |