summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pkg/vpn/launcher_darwin.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/vpn/launcher_darwin.go b/pkg/vpn/launcher_darwin.go
index 919c81b..7485ca9 100644
--- a/pkg/vpn/launcher_darwin.go
+++ b/pkg/vpn/launcher_darwin.go
@@ -84,7 +84,7 @@ func smellsLikeOurHelperSpirit(port int, c *http.Client) bool {
func newLauncher() (*launcher, error) {
helperPort := probeHelperPort(initialHelperPort)
helperAddr := "http://localhost:" + strconv.Itoa(helperPort)
- return &launcher{helperAddr, false}, nil
+ return &launcher{helperAddr: helperAddr, failed: false}, nil
}
func (l *launcher) close() error {