iplist/iplist.go | 3 +-- diff --git a/iplist/iplist.go b/iplist/iplist.go index 5585909bed393b78e7603a5b86b7d3f1bad36be6..958af5a94d5fe00897373748e3164e73075cc9f8 100644 --- a/iplist/iplist.go +++ b/iplist/iplist.go @@ -92,8 +92,7 @@ l = bytes.TrimSpace(l) if len(l) == 0 || bytes.HasPrefix(l, []byte("#")) { return } - // TODO: Something tells me this will end badly when IPv6 blocklists are - // added. + // TODO: Check this when IPv6 blocklists are available. colon := bytes.LastIndexAny(l, ":") if colon == -1 { err = errors.New("missing colon")