diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2019-08-24 12:29:17 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2019-08-24 12:29:17 +0200 |
commit | 0c540ad60e6942f0c8458d8b9b5ceb2d76a0d29b (patch) | |
tree | 7cfb3c2a29aa5959c60a6952f96672ef2fd3e3fd /tun/tun_windows.go | |
parent | 3cedc22d7b49be8ca00dc549c79de9e4a2d3df5b (diff) |
wintun: make description consistent across fields
Diffstat (limited to 'tun/tun_windows.go')
-rw-r--r-- | tun/tun_windows.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tun/tun_windows.go b/tun/tun_windows.go index a66f709..aa54ad5 100644 --- a/tun/tun_windows.go +++ b/tun/tun_windows.go @@ -108,7 +108,7 @@ func CreateTUNWithRequestedGUID(ifname string, requestedGUID *windows.GUID) (Dev } else if err == windows.ERROR_ALREADY_EXISTS { return nil, fmt.Errorf("Foreign network interface with the same name exists") } - wt, _, err = wintun.CreateInterface("WireGuard Tunnel Adapter", requestedGUID) + wt, _, err = wintun.CreateInterface(requestedGUID) if err != nil { return nil, fmt.Errorf("Unable to create Wintun interface: %v", err) } |