From 54bf67a5f0235c504cd73f3b41493680b3592289 Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Mon, 8 Aug 2011 16:30:52 +0200 Subject: [PATCH] Fixes --- _examples/Makefile | 1 + _examples/funkensturm/config.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/_examples/Makefile b/_examples/Makefile index c4742569..695fe0e9 100644 --- a/_examples/Makefile +++ b/_examples/Makefile @@ -4,6 +4,7 @@ key2ds \ axfr \ reflect \ q \ +qperf \ funkensturm \ ns \ diff --git a/_examples/funkensturm/config.go b/_examples/funkensturm/config.go index c1c94128..ef15e8a6 100644 --- a/_examples/funkensturm/config.go +++ b/_examples/funkensturm/config.go @@ -7,7 +7,7 @@ import ( func send(m *dns.Msg) (buf []byte) { var o *dns.Msg for _, c := range qr { - o = c.Client.Exchange(m, c.Addr) + o, _ = c.Client.Exchange(m, c.Addr) } buf, _ = o.Pack() return