aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tunnel
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2019-10-17 15:20:33 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2019-10-17 15:44:09 +0200
commitf9da5f79db2910a158e7de1e1a11eeb3270557ae (patch)
treeb9154693d7699416bda86004701338444a1713be /tunnel
parentupdater: use ed25519 from standard library (diff)
downloadwireguard-windows-f9da5f79db2910a158e7de1e1a11eeb3270557ae.tar.xz
wireguard-windows-f9da5f79db2910a158e7de1e1a11eeb3270557ae.zip
mod: bump
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'tunnel')
-rw-r--r--tunnel/service.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tunnel/service.go b/tunnel/service.go
index d393ea93..8bd981d6 100644
--- a/tunnel/service.go
+++ b/tunnel/service.go
@@ -157,7 +157,7 @@ func (service *tunnelService) Execute(args []string, r <-chan svc.ChangeRequest,
}
log.Println("Creating Wintun interface")
- wintun, err := tun.CreateTUNWithRequestedGUID(conf.Name, deterministicGUID(conf))
+ wintun, err := tun.CreateTUNWithRequestedGUID(conf.Name, deterministicGUID(conf), 0)
if err != nil {
serviceError = services.ErrorCreateWintun
return