auto go fmt

Signed-off-by: coredns[bot] <bot@bot.coredns.io>
This commit is contained in:
coredns[bot] 2021-06-07 10:43:28 +00:00
parent 47be274d34
commit cd1134f0c9

View file

@ -17,7 +17,7 @@ import (
func Split(n *net.IPNet) []string {
boundary := 8
nstr := n.String()
if strings.Contains(nstr,":") {
if strings.Contains(nstr, ":") {
boundary = 4
}
ones, _ := n.Mask.Size()