This commit is contained in:
Miek Gieben 2011-08-08 16:30:52 +02:00
parent e66de90871
commit 54bf67a5f0
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ key2ds \
axfr \
reflect \
q \
qperf \
funkensturm \
ns \

View File

@ -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