Fix lint error properly this time

This commit is contained in:
Neil Alexander 2023-02-26 21:35:56 +00:00
parent 1dd1d0ab8c
commit 38736358dd
No known key found for this signature in database
GPG Key ID: A02A2019A2BB0944

View File

@ -108,7 +108,7 @@ func (tun *TunAdapter) _start() error {
tun.addr = tun.rwc.Address()
tun.subnet = tun.rwc.Subnet()
prefix := address.GetPrefix()
addr := fmt.Sprintf("%s/%d", net.IP(tun.addr[:]).String(), 8*len(prefix)-1)
addr := fmt.Sprintf("%s/%d", net.IP(tun.addr[:]).String(), 8*len(prefix[:])-1)
if tun.config.name == "none" || tun.config.name == "dummy" {
tun.log.Debugln("Not starting TUN as ifname is none or dummy")
tun.isEnabled = false