devel2 /homes/dwmw2 $ host -l -t any mvhi.com ns.uu.net Using domain server: Name: ns.uu.net Address: 137.39.1.3 Aliases: Server failed: Premature end of data Segmentation fault (core dumped) If you can't reproduce it, let me know and I'll install the sources and trace it further.
quick fix is the following patch: --- bind-8.2/src/bin/host/host.c.error Wed Mar 24 11:43:19 1999 +++ bind-8.2/src/bin/host/host.c Wed Mar 24 11:56:19 1999 @@ -1310,6 +1314,7 @@ amtToRead = len; cp = buf.qb2; + if (amtToRead > NS_PACKETSZ) amtToRead=NS_PACKETSZ; while (amtToRead > 0 && (numRead = read(sockFD, cp, amtToRead)) > 0) { cp += numRead;
Bill, did you apply the quick and dirty fix?
fixed in bind-8.2-6