commit 2777bf97572783865fc805cd07eb71d89e02cdcb
parent ff26c64b80b72443f9f05da35746362e6636a09e
Author: Frederic Cambus <fred@statdns.com>
Date: Sat, 20 May 2017 13:49:13 +0200
RR type is an encoded 16 bit value
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/statzone.go b/statzone.go
@@ -5,7 +5,7 @@
/* https://www.statdns.com */
/* */
/* Created: 2012-02-13 */
-/* Last Updated: 2017-02-17 */
+/* Last Updated: 2017-05-20 */
/* */
/* StatZone is released under the BSD 2-Clause license. */
/* See LICENSE file for details. */
@@ -61,7 +61,7 @@ func main() {
zone := dns.ParseZone(bufio.NewReader(zoneFile), "", "")
- var rrtypes [100]int
+ var rrtypes [65536]int
for parsedLine := range zone {
if parsedLine.RR != nil {