2009-06-19 Bob Halley <halley@dnspython.org>
+ * On Windows, the resolver set the domain incorrectly. Thanks
+ to Brandon Carpenter for reporting this bug.
+
* Added a to_digestable() method to rdata classes; it returns the
digestable form (i.e. DNSSEC canonical form) of the rdata. For
most rdata types this is the same uncompressed wire form. For
Bugs fixed since 1.6.0:
+ On Windows, the resolver set the domain incorrectly.
+
DS RR parsing only allowed one Base64 chunk.
TSIG validation didn't always use absolute names.
try:
dom, rtype = _winreg.QueryValueEx(key, 'Domain')
if dom:
- self._config_win32_domain(servers)
+ self._config_win32_domain(dom)
except WindowsError:
pass
else:
try:
dom, rtype = _winreg.QueryValueEx(key, 'DhcpDomain')
if dom:
- self._config_win32_domain(servers)
+ self._config_win32_domain(dom)
except WindowsError:
pass
try: