aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tunnel/winipcfg/netsh.go
diff options
context:
space:
mode:
Diffstat (limited to 'tunnel/winipcfg/netsh.go')
-rw-r--r--tunnel/winipcfg/netsh.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/tunnel/winipcfg/netsh.go b/tunnel/winipcfg/netsh.go
index 4cff5de8..4714c520 100644
--- a/tunnel/winipcfg/netsh.go
+++ b/tunnel/winipcfg/netsh.go
@@ -10,6 +10,7 @@ import (
"fmt"
"io"
"os/exec"
+ "path/filepath"
"strings"
"golang.org/x/sys/windows"
@@ -23,7 +24,7 @@ func runNetsh(cmds []string) error {
if err != nil {
return err
}
- cmd := exec.Command(system32 + "\\netsh.exe") // I wish we could append (, "-f", "CONIN$") but Go sets up the process context wrong.
+ cmd := exec.Command(filepath.Join(system32, "netsh.exe")) // I wish we could append (, "-f", "CONIN$") but Go sets up the process context wrong.
stdin, err := cmd.StdinPipe()
if err != nil {
return fmt.Errorf("runNetsh stdin pipe - %v", err)