Skip to content
Snippets Groups Projects
Commit dd7784ab authored by Marek Vavruša's avatar Marek Vavruša
Browse files

lib: fixed bad merge (failed to copy TA with root hints)

parent fe3f767a
Branches
Tags
No related merge requests found
......@@ -294,6 +294,9 @@ int kr_zonecut_set_sbelt(struct kr_context *ctx, struct kr_zonecut *cut)
/* Copy root hints from resolution context. */
if (ctx->root_hints.nsset.root) {
int ret = kr_zonecut_copy(cut, &ctx->root_hints);
if (ret == 0) {
ret = kr_zonecut_copy_trust(cut, &ctx->root_hints);
}
if (ret == 0) {
return ret;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment