aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/services/names.go
diff options
context:
space:
mode:
Diffstat (limited to 'services/names.go')
-rw-r--r--services/names.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/names.go b/services/names.go
index 3b9003d0..74445482 100644
--- a/services/names.go
+++ b/services/names.go
@@ -22,5 +22,5 @@ func PipePathOfTunnel(tunnelName string) (string, error) {
if !conf.TunnelNameIsValid(tunnelName) {
return "", errors.New("Tunnel name is not valid")
}
- return "\\\\.\\pipe\\WireGuard\\" + tunnelName, nil
+ return `\\.\pipe\ProtectedPrefix\Administrators\WireGuard\` + tunnelName, nil
}