diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2021-01-28 17:23:39 +0100 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2021-01-28 17:23:39 +0100 |
commit | bf3bb888512e74bee0b79bd38826cb019ca2a0ee (patch) | |
tree | 5554c1a901300698237ade32c8e90092aefafb20 /main_windows.go | |
parent | 6a128dde71d925fd4865ebd86855213a429b4729 (diff) |
device: remove version string
This is what modules are for, and Go binaries can introspect.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'main_windows.go')
-rw-r--r-- | main_windows.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main_windows.go b/main_windows.go index 82a333d..7835a17 100644 --- a/main_windows.go +++ b/main_windows.go @@ -34,7 +34,7 @@ func main() { device.LogLevelVerbose, fmt.Sprintf("(%s) ", interfaceName), ) - logger.Verbosef("Starting wireguard-go version %s", device.WireGuardGoVersion) + logger.Verbosef("Starting wireguard-go version %s", Version) tun, err := tun.CreateTUN(interfaceName, 0) if err == nil { |