mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 02:49:59 -04:00
Forgot to initialize a fixedname, which made it a brokenname.
This commit is contained in:
parent
f2100b37bc
commit
f563fcf124
1 changed files with 3 additions and 1 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: check.c,v 1.127 2011/03/11 06:11:22 marka Exp $ */
|
||||
/* $Id: check.c,v 1.128 2011/03/11 17:19:05 each Exp $ */
|
||||
|
||||
/*! \file */
|
||||
|
||||
|
|
@ -2020,6 +2020,8 @@ check_trusted_key(const cfg_obj_t *key, isc_boolean_t managed,
|
|||
flags = cfg_obj_asuint32(cfg_tuple_get(key, "flags"));
|
||||
proto = cfg_obj_asuint32(cfg_tuple_get(key, "protocol"));
|
||||
alg = cfg_obj_asuint32(cfg_tuple_get(key, "algorithm"));
|
||||
|
||||
dns_fixedname_init(&fkeyname);
|
||||
keyname = dns_fixedname_name(&fkeyname);
|
||||
keynamestr = cfg_obj_asstring(cfg_tuple_get(key, "name"));
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue