From 93e5e01114db37f2ee72b110abc32284dfa8b424 Mon Sep 17 00:00:00 2001
From: Ruben Pollan <meskio@sindominio.net>
Date: Thu, 21 Jun 2018 17:20:29 +0200
Subject: [PATCH] [bug] send a "null" to the openvpn_stop windows helper

---
 bitmask_go/launcher_windows.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bitmask_go/launcher_windows.go b/bitmask_go/launcher_windows.go
index ddebfbe8..d0effa45 100644
--- a/bitmask_go/launcher_windows.go
+++ b/bitmask_go/launcher_windows.go
@@ -57,7 +57,7 @@ func (l *launcher) firewallStop() error {
 
 func (l *launcher) send(cmd string, args ...string) error {
 	if args == nil {
-		args = []string{}
+		args = "null"
 	}
 	command := struct {
 		Cmd  string `json:"cmd"`
-- 
GitLab