mirror of
https://github.com/tailscale/tailscale.git
synced 2026-09-23 20:15:20 -04:00
wgengine: fix error string.
Signed-off-by: David Anderson <dave@natulte.net>
This commit is contained in:
1 parent
43becc4334
commit
2f9cdd0aac
1 file changed
+1
-1
@@ -62,7 +62,7 @@ func NewUserspaceEngine(logf logger.Logf, tunname string, listenPort uint16, der
|
||||
logf("external packet routing via --tun=%s enabled", tunname)
|
||||
|
||||
if tunname == "" {
|
||||
return nil, fmt.Errorf("--tun name must not be blank.")
|
||||
return nil, fmt.Errorf("--tun name must not be blank")
|
||||
}
|
||||
|
||||
tuntap, err := tun.CreateTUN(tunname, device.DefaultMTU)
|
||||
|
||||
Reference in new issue
Block a user