From 06c54521b8c2e9fc0ff2f8fae1b5f3b50adaa122 Mon Sep 17 00:00:00 2001 From: jkito Date: Tue, 1 Nov 2022 00:54:45 +0530 Subject: [bug] windows: add missing struct field of the launcher struct --- pkg/vpn/launcher_windows.go | 3 +++ 1 file changed, 3 insertions(+) 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) { -- cgit v1.2.3