properly referring to instance variable. Patch from shussain.
zone to be an NSEC3 (or its RRSIG) covering an empty non terminal.
* New functions: ldns_pkt_ixfr_request_new and
ldns_pkt_ixfr_request_new_frm_str.
+ * bugfix #507: ldnsx Fix use of non-existent variables and not
+ properly referring to instance variable. Patch from shussain.
1.6.16 2012-11-13
* Fix Makefile to build pyldns with BSD make
raise Exception("%s lookup failed (server error or dnssec validation failed)" % name)
if pkt.rcode() == "NXDOMAIN":
if "AD" in pkt.flags():
- raise Exception("%s lookup failed (non-existence proven by DNSSEC)" % hostname )
+ raise Exception("%s lookup failed (non-existence proven by DNSSEC)" % name )
else:
- raise Exception("%s lookup failed" % hostname )
+ raise Exception("%s lookup failed" % name )
if pkt.rcode() == "NOERROR":
if "AD" not in pkt.flags():
if not flex:
def __len__(self):
try:
- return len(_rdfs)
+ return len(self._rdfs)
except:
return 0