Skip to content
Snippets Groups Projects
Commit ae176fb9 authored by Jan Kadlec's avatar Jan Kadlec
Browse files

Fixes #1097

parent 02bcfc6e
No related branches found
No related tags found
No related merge requests found
......@@ -441,7 +441,7 @@ static int check_dnskey_rdata(const knot_rdata_t *rdata)
{
/* check that Zone key bit it set - position 7 in net order */
/*! \todo FIXME: endian? */
uint16_t mask = 1 << 7; //0b0000000100000000;
uint16_t mask = 1 << 8; //0b0000000100000000;
uint16_t flags =
knot_wire_read_u16((uint8_t *)rdata_item_data
......
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