From 9e781cc9122f20d60772644f05086883e0937c64 Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Sun, 18 Jan 2026 15:04:28 +0000 Subject: [PATCH] Fix lint error --- src/core/link_tcp_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/link_tcp_linux.go b/src/core/link_tcp_linux.go index e7f05ddc..223d788d 100644 --- a/src/core/link_tcp_linux.go +++ b/src/core/link_tcp_linux.go @@ -22,7 +22,7 @@ func (t *linkTCP) getControl(sintf string) func(string, string, syscall.RawConn) } _ = c.Control(btd) if err != nil { - t.links.core.log.Debugln("Failed to set SO_BINDTODEVICE:", sintf) + t.core.log.Debugln("Failed to set SO_BINDTODEVICE:", sintf) } return t.tcpContext(network, address, c) }