From 75cdc5986a7e34f50a48c0b9935ec15b7c5012ff Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Sat, 19 May 2018 02:35:56 +0200 Subject: Revert "Temporary work around. Please revert me" This reverts commit 4312a7c70a58656891ff1398f2d0d36f4ed74c8a. --- tun_darwin.go | 2 -- 1 file changed, 2 deletions(-) (limited to 'tun_darwin.go') diff --git a/tun_darwin.go b/tun_darwin.go index f76de13..fcde2a0 100644 --- a/tun_darwin.go +++ b/tun_darwin.go @@ -16,7 +16,6 @@ import ( "io/ioutil" "net" "os" - "path/filepath" "time" "unsafe" ) @@ -109,7 +108,6 @@ 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) } } -- cgit v1.2.3-59-g8ed1b