diff options
| -rw-r--r-- | dns/rdtypes/ANY/HIP.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dns/rdtypes/ANY/HIP.py b/dns/rdtypes/ANY/HIP.py index f51f3a8..011ec43 100644 --- a/dns/rdtypes/ANY/HIP.py +++ b/dns/rdtypes/ANY/HIP.py @@ -79,7 +79,7 @@ class HIP(dns.rdata.Rdata): file.write(self.hit) file.write(self.key) for server in self.servers: - server.to_wire(file, compress, origin) + server.to_wire(file, None, origin) def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): (lh, algorithm, lk) = struct.unpack('!BBH', |
