diff options
| author | 2020-02-24 17:43:52 +0000 | |
|---|---|---|
| committer | 2020-02-24 17:43:52 +0000 | |
| commit | a0b66ce4c613713136b0fa92fbb3e802f53bd8e9 (patch) | |
| tree | fc2b10b30dd5dbb5e5d3234b98f89cde12d0f56b /usr.bin/dig/lib/dns/tsig.c | |
| parent | We are never required to "render glue first" since we just print what (diff) | |
| download | wireguard-openbsd-a0b66ce4c613713136b0fa92fbb3e802f53bd8e9.tar.xz wireguard-openbsd-a0b66ce4c613713136b0fa92fbb3e802f53bd8e9.zip | |
We only need to free cname, ns, soa and tsig structs.
OK jsg
Diffstat (limited to 'usr.bin/dig/lib/dns/tsig.c')
| -rw-r--r-- | usr.bin/dig/lib/dns/tsig.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/dig/lib/dns/tsig.c b/usr.bin/dig/lib/dns/tsig.c index da0b76ef828..6e31954509b 100644 --- a/usr.bin/dig/lib/dns/tsig.c +++ b/usr.bin/dig/lib/dns/tsig.c @@ -15,7 +15,7 @@ */ /* - * $Id: tsig.c,v 1.9 2020/02/23 08:54:01 florian Exp $ + * $Id: tsig.c,v 1.10 2020/02/24 17:43:52 florian Exp $ */ /*! \file */ @@ -1357,7 +1357,7 @@ tsig_verify_tcp(isc_buffer_t *source, dns_message_t *msg) { } cleanup_querystruct: - dns_rdata_freestruct(&querytsig); + dns_rdata_freestruct_tsig(&querytsig); return (ret); } |
