From 588b9f01ae1ac81844b52c095c9abcd9326d35a3 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Wed, 23 May 2018 03:17:51 +0200 Subject: Adopt GOPATH GOPATH is annoying, but the Go community pushing me to adopt it is even more annoying. --- tun/tun_darwin.go | 2 +- tun/tun_freebsd.go | 2 +- tun/tun_linux.go | 2 +- tun/tun_openbsd.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'tun') diff --git a/tun/tun_darwin.go b/tun/tun_darwin.go index fcbb4f9..04020cb 100644 --- a/tun/tun_darwin.go +++ b/tun/tun_darwin.go @@ -7,7 +7,7 @@ package tun import ( - "../rwcancel" + "git.zx2c4.com/wireguard-go/rwcancel" "errors" "fmt" "golang.org/x/net/ipv6" diff --git a/tun/tun_freebsd.go b/tun/tun_freebsd.go index b4cf57d..bd70104 100644 --- a/tun/tun_freebsd.go +++ b/tun/tun_freebsd.go @@ -6,7 +6,7 @@ package tun import ( - "../rwcancel" + "git.zx2c4.com/wireguard-go/rwcancel" "bytes" "errors" "fmt" diff --git a/tun/tun_linux.go b/tun/tun_linux.go index acfb942..d048c21 100644 --- a/tun/tun_linux.go +++ b/tun/tun_linux.go @@ -12,7 +12,7 @@ package tun */ import ( - "../rwcancel" + "git.zx2c4.com/wireguard-go/rwcancel" "bytes" "errors" "fmt" diff --git a/tun/tun_openbsd.go b/tun/tun_openbsd.go index 74b25e5..709b5cd 100644 --- a/tun/tun_openbsd.go +++ b/tun/tun_openbsd.go @@ -6,7 +6,7 @@ package tun import ( - "../rwcancel" + "git.zx2c4.com/wireguard-go/rwcancel" "errors" "fmt" "golang.org/x/net/ipv6" -- cgit v1.2.3-59-g8ed1b