Skip to content
Snippets Groups Projects
Commit 9c20d9e0 authored by Daniel Salzman's avatar Daniel Salzman
Browse files

knsupdate: preserve dname letter case in response

parent 97cae996
Branches
Tags
1 merge request!1409kdig: allow trailing data in XFR and preserve dname letter case in XFR
/* Copyright (C) 2021 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz> /* Copyright (C) 2022 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
...@@ -868,7 +868,7 @@ int cmd_send(const char* lp, knsupdate_params_t *params) ...@@ -868,7 +868,7 @@ int cmd_send(const char* lp, knsupdate_params_t *params)
} }
/* Parse response. */ /* Parse response. */
ret = knot_pkt_parse(params->answer, 0); ret = knot_pkt_parse(params->answer, KNOT_PF_NOCANON);
if (ret != KNOT_EOK) { if (ret != KNOT_EOK) {
ERR("failed to parse response (%s)\n", knot_strerror(ret)); ERR("failed to parse response (%s)\n", knot_strerror(ret));
sign_context_deinit(&sign_ctx); sign_context_deinit(&sign_ctx);
......
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