1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-31 01:47:15 +03:00

Merge pull request #514 from teg/resolved-rrsig-marshal

resolved: fix marshalling of RRSIG records
This commit is contained in:
Lennart Poettering 2015-07-08 13:00:20 -03:00
commit 74d8a0d4b2

View File

@ -691,7 +691,7 @@ int dns_packet_append_rr(DnsPacket *p, const DnsResourceRecord *rr, size_t *star
if (r < 0)
goto fail;
r = dns_packet_append_uint8(p, rr->rrsig.key_tag, NULL);
r = dns_packet_append_uint16(p, rr->rrsig.key_tag, NULL);
if (r < 0)
goto fail;