From 5362e952e1c0662bb56a642f808212e346731bde Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Mon, 30 Mar 2020 11:23:18 -0700 Subject: [PATCH] safesocket: gofmt Was developed on a random machine without my normal environment. --- safesocket/unixsocket.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/safesocket/unixsocket.go b/safesocket/unixsocket.go index 109bab41d..369e8b6eb 100644 --- a/safesocket/unixsocket.go +++ b/safesocket/unixsocket.go @@ -88,10 +88,10 @@ func listen(path string, port uint16) (ln net.Listener, _ uint16, err error) { // * we return the net.Conn and the caller speaks the normal protocol func connectMacOSAppSandbox() (net.Conn, error) { 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 {