net/interface: use internal implementation for itoa.Uitoa

Signed-off-by: deadprogram <ron@hybridgroup.com>
Этот коммит содержится в:
deadprogram 2021-12-08 13:14:06 +01:00 коммит произвёл Ron Evans
родитель d87ff838eb
коммит 9734f349a3

Просмотреть файл

@ -8,6 +8,7 @@ package net
import (
"errors"
"internal/itoa"
"sync"
"time"
)
@ -226,7 +227,7 @@ func (zc *ipv6ZoneCache) name(index int) string {
zoneCache.RUnlock()
}
if !ok { // last resort
name = uitoa(uint(index))
name = itoa.Uitoa(uint(index))
}
return name
}