From c1ae9a30391ea1afb241b68e7ee3cc94a303cb72 Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Sat, 17 Nov 2012 22:02:22 +0100 Subject: [PATCH] Also parse L32 --- zscan_rr.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zscan_rr.go b/zscan_rr.go index 235e05be..7b431ea3 100644 --- a/zscan_rr.go +++ b/zscan_rr.go @@ -85,7 +85,7 @@ func setRR(h RR_Header, c chan lex, o, f string) (RR, *ParseError) { // case TypeNID: // r, e := setNID(h, c, f) case TypeL32: - r, e := setL32(h, c, f) + r, e = setL32(h, c, f) // case TypeL64: // r, e := setL64(h, c, f) // case TypeLP: @@ -1738,6 +1738,7 @@ func setDHCID(h RR_Header, c chan lex, f string) (RR, *ParseError) { } func setNID(h RR_Header, c chan lex, f string) (RR, *ParseError) { + return nil, nil } func setL32(h RR_Header, c chan lex, f string) (RR, *ParseError) {