From d8e67ca2ab22274e02c2f4d87c1341e0a1ea2550 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Mon, 20 Jul 2020 14:40:19 -0700 Subject: [PATCH] safesocket: gofmt gofmt differences between versions :( --- safesocket/unixsocket.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/safesocket/unixsocket.go b/safesocket/unixsocket.go index dc4e5c761..b2e2c3399 100644 --- a/safesocket/unixsocket.go +++ b/safesocket/unixsocket.go @@ -130,10 +130,10 @@ func connectMacOSAppSandbox() (net.Conn, error) { // App Sandbox. out, err := exec.Command("lsof", - "-n", // numeric sockets; don't do DNS lookups, etc - "-a", // logical AND remaining options + "-n", // numeric sockets; don't do DNS lookups, etc + "-a", // logical AND remaining options fmt.Sprintf("-u%d", os.Getuid()), // process of same user only - "-c", "IPNExtension", // starting with IPNExtension + "-c", "IPNExtension", // starting with IPNExtension "-F", // machine-readable output ).Output() if err != nil {