diff --git a/interface.go b/interface.go index 74a2650..32206f7 100644 --- a/interface.go +++ b/interface.go @@ -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 }