From e453c7ca57ae879e5cb78c9c62bab74d9024a5ef Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Fri, 5 Mar 2021 13:43:54 -0800 Subject: [PATCH] safesocket: use right version of gofmt sigh Signed-off-by: Brad Fitzpatrick --- safesocket/safesocket_darwin.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/safesocket/safesocket_darwin.go b/safesocket/safesocket_darwin.go index f53113f38..1f2bbb2e0 100644 --- a/safesocket/safesocket_darwin.go +++ b/safesocket/safesocket_darwin.go @@ -54,10 +54,10 @@ func localTCPPortAndTokenDarwin() (port int, token string, err error) { // lsof to find the IPNExtension: 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 {