summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjkito <jkito@github>2022-11-01 00:54:45 +0530
committerkali kaneko (leap communications) <kali@leap.se>2022-11-08 21:39:54 +0100
commit06c54521b8c2e9fc0ff2f8fae1b5f3b50adaa122 (patch)
tree257d074adab8906d29307cf9e496492cacb4a79b
parent89738a24370324c892b183654651ad9fd540436d (diff)
[bug] windows: add missing struct field of the launcher struct
-rw-r--r--pkg/vpn/launcher_windows.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/vpn/launcher_windows.go b/pkg/vpn/launcher_windows.go
index 4f81ecd..069cb32 100644
--- a/pkg/vpn/launcher_windows.go
+++ b/pkg/vpn/launcher_windows.go
@@ -1,4 +1,6 @@
+//go:build windows
// +build windows
+
// Copyright (C) 2018-2021 LEAP
//
// This program is free software: you can redistribute it and/or modify
@@ -36,6 +38,7 @@ const pipeName = `\\.\pipe\openvpn\service`
type launcher struct {
mngPass string
+ failed bool
}
func newLauncher() (*launcher, error) {