From: Jason A. Donenfeld Date: Tue, 15 May 2018 17:56:06 +0000 (+0200) Subject: Temporary work around. Please revert me X-Git-Tag: 0.0.20180514~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4312a7c70a58656891ff1398f2d0d36f4ed74c8a;p=thirdparty%2Fwireguard-go.git Temporary work around. Please revert me --- diff --git a/tun_darwin.go b/tun_darwin.go index ed055b2..04badd9 100644 --- a/tun_darwin.go +++ b/tun_darwin.go @@ -15,6 +15,7 @@ import ( "io/ioutil" "net" "os" + "path/filepath" "time" "unsafe" ) @@ -107,6 +108,7 @@ func CreateTUN(name string) (TUNDevice, error) { if err == nil && name == "utun" { fname := os.Getenv("WG_DARWIN_UTUN_NAME_FILE") if fname != "" { + os.MkdirAll(filepath.Dir(fname), 0700) ioutil.WriteFile(fname, []byte(tun.(*NativeTun).name+"\n"), 0400) } }