diff options
| author | Brad Fitzpatrick <bradfitz@tailscale.com> | 2025-03-24 13:42:11 -0700 |
|---|---|---|
| committer | Brad Fitzpatrick <bradfitz@tailscale.com> | 2025-03-24 13:42:11 -0700 |
| commit | 5b781a70e8479baa44bb0e724faa5b01eee2cd13 (patch) | |
| tree | 34e8dd0843ee16572a713c03cf5c02354777bb7f | |
| parent | 261776e2e4f574fc2497cc56ac3bf8b9f501e4b4 (diff) | |
| download | tailscale-bradfitz/plan9.tar.xz tailscale-bradfitz/plan9.zip | |
wgengine/magicsock: fix typo in commentbradfitz/plan9
Change-Id: I53fdc085ecb2c9123b21429b3d2ae80a06f22df2
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
| -rw-r--r-- | wgengine/magicsock/magicsock.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wgengine/magicsock/magicsock.go b/wgengine/magicsock/magicsock.go index 2eb8b07ef..313f9e315 100644 --- a/wgengine/magicsock/magicsock.go +++ b/wgengine/magicsock/magicsock.go @@ -3019,7 +3019,7 @@ func (c *Conn) DebugForcePreferDERP(n int) { // logging an error if it occurs. func portableTrySetSocketBuffer(pconn nettype.PacketConn, logf logger.Logf) { if runtime.GOOS == "plan9" { - // Not supportd. Don't try. Avoid logspam. + // Not supported. Don't try. Avoid logspam. return } if c, ok := pconn.(*net.UDPConn); ok { |
