Skip to content
Snippets Groups Projects
Commit 0124c546 authored by Lubos Slovak's avatar Lubos Slovak
Browse files

Fix in getting type covered from RRSIG RDATA

parent 07f19c60
No related branches found
No related tags found
No related merge requests found
......@@ -756,5 +756,5 @@ uint16_t dnslib_rdata_rrsig_type_covered(const dnslib_rdata_t *rdata)
return 0;
}
return dnslib_wire_read_u16(rdata->items[0].raw_data + 1);
return dnslib_wire_read_u16((uint8_t *)(rdata->items[0].raw_data + 1));
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment