diff options
author | Ruben Pollan <meskio@sindominio.net> | 2018-06-21 16:53:36 +0200 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2018-06-21 16:54:08 +0200 |
commit | 71f0b807670901dca8698deba1e21dd5b2a09567 (patch) | |
tree | 32c0421edc7edac47ee4ad1aef28e99145d54c73 /bitmask_go/bonafide.go | |
parent | 14578be06da27c9f56675d6a162a160e4fcf233b (diff) |
[bug] clean up vpn args for windows
Diffstat (limited to 'bitmask_go/bonafide.go')
-rw-r--r-- | bitmask_go/bonafide.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bitmask_go/bonafide.go b/bitmask_go/bonafide.go index 97d83c9..449383e 100644 --- a/bitmask_go/bonafide.go +++ b/bitmask_go/bonafide.go @@ -25,6 +25,7 @@ import ( "net/http" "sort" "strconv" + "strings" "time" ) @@ -150,7 +151,8 @@ func (b *bonafide) getOpenvpnArgs() ([]string, error) { for arg, value := range b.eip.OpenvpnConfiguration { switch v := value.(type) { case string: - args = append(args, "--"+arg, v) + args = append(args, "--"+arg) + args = append(args, strings.Split(v, " ")...) case bool: if v { args = append(args, "--"+arg) |