(*NativeTun).operateOnFd is only used on darwin and freebsd. Adjust the build tags accordingly.
Signed-off-by: Tobias Klauser <[email protected]> --- tun/operateonfd.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tun/operateonfd.go b/tun/operateonfd.go index aab71161f27c..bc804539169f 100644 --- a/tun/operateonfd.go +++ b/tun/operateonfd.go @@ -1,5 +1,5 @@ -//go:build !windows -// +build !windows +//go:build darwin || freebsd +// +build darwin freebsd /* SPDX-License-Identifier: MIT * -- 2.33.0
