Skip to content
Snippets Groups Projects
Commit 9ab7f4c8 authored by Jan Včelák's avatar Jan Včelák :rocket:
Browse files

silly me: if statement has empty body

refs #4
parent 71219ea5
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,7 @@ static int dnssec_nsec3_tests_run(int argc, char *argv[])
rrset = knot_rrset_new(NULL, KNOT_RRTYPE_NSEC3PARAM, KNOT_CLASS_IN, 0);
result = knot_rrset_add_rdata(rrset, rdata, sizeof(rdata));
if (result == KNOT_EOK); {
if (result == KNOT_EOK) {
result = knot_nsec3_params_from_wire(&params, rrset);
}
......
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