From 9c9e7e2724340280d0ca4ff29c067f2d144562c0 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Thu, 9 Dec 2021 17:55:50 +0100 Subject: global: apply gofumpt Signed-off-by: Jason A. Donenfeld --- ipc/namedpipe/file.go | 6 ++++-- ipc/namedpipe/namedpipe_test.go | 2 +- ipc/uapi_bsd.go | 1 - ipc/uapi_linux.go | 1 - ipc/uapi_unix.go | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) (limited to 'ipc') diff --git a/ipc/namedpipe/file.go b/ipc/namedpipe/file.go index 9c2481d..c5dd48a 100644 --- a/ipc/namedpipe/file.go +++ b/ipc/namedpipe/file.go @@ -22,8 +22,10 @@ import ( type timeoutChan chan struct{} -var ioInitOnce sync.Once -var ioCompletionPort windows.Handle +var ( + ioInitOnce sync.Once + ioCompletionPort windows.Handle +) // ioResult contains the result of an asynchronous IO operation type ioResult struct { diff --git a/ipc/namedpipe/namedpipe_test.go b/ipc/namedpipe/namedpipe_test.go index 0573d0f..84d2987 100644 --- a/ipc/namedpipe/namedpipe_test.go +++ b/ipc/namedpipe/namedpipe_test.go @@ -169,7 +169,7 @@ func TestDialAccessDeniedWithRestrictedSD(t *testing.T) { } } -func getConnection(cfg *namedpipe.ListenConfig) (client net.Conn, server net.Conn, err error) { +func getConnection(cfg *namedpipe.ListenConfig) (client, server net.Conn, err error) { pipePath := randomPipePath() if cfg == nil { cfg = &namedpipe.ListenConfig{} diff --git a/ipc/uapi_bsd.go b/ipc/uapi_bsd.go index 6deaa87..6c85b40 100644 --- a/ipc/uapi_bsd.go +++ b/ipc/uapi_bsd.go @@ -54,7 +54,6 @@ func (l *UAPIListener) Addr() net.Addr { } func UAPIListen(name string, file *os.File) (net.Listener, error) { - // wrap file in listener listener, err := net.FileListener(file) diff --git a/ipc/uapi_linux.go b/ipc/uapi_linux.go index e03a00b..30a8eb4 100644 --- a/ipc/uapi_linux.go +++ b/ipc/uapi_linux.go @@ -51,7 +51,6 @@ func (l *UAPIListener) Addr() net.Addr { } func UAPIListen(name string, file *os.File) (net.Listener, error) { - // wrap file in listener listener, err := net.FileListener(file) diff --git a/ipc/uapi_unix.go b/ipc/uapi_unix.go index 57caf21..6f1ee47 100644 --- a/ipc/uapi_unix.go +++ b/ipc/uapi_unix.go @@ -33,7 +33,7 @@ func sockPath(iface string) string { } func UAPIOpen(name string) (*os.File, error) { - if err := os.MkdirAll(socketDirectory, 0755); err != nil { + if err := os.MkdirAll(socketDirectory, 0o755); err != nil { return nil, err } @@ -43,7 +43,7 @@ func UAPIOpen(name string) (*os.File, error) { return nil, err } - oldUmask := unix.Umask(0077) + oldUmask := unix.Umask(0o077) defer unix.Umask(oldUmask) listener, err := net.ListenUnix("unix", addr) -- cgit v1.2.3-54-g00ecf