Uriel 13 years ago
parent
commit
d9158ed7ec
1 changed files with 1 additions and 1 deletions
  1. 1 1
      picker.go

+ 1 - 1
picker.go

@@ -9,7 +9,7 @@ func (label *Label) Picker(qtype uint16, max int) Records {
 
 	if qtype == dns.TypeANY {
 		result := make([]Record, 0)
-		for rtype, _ := range label.Records {
+		for rtype := range label.Records {
 
 			rtype_records := label.Picker(rtype, max)