mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-02 21:40:43 -05:00
461. [bug] Specifying an unknown key in the keys clause of the
controls statement caused a NULL pointer dereference.
This commit is contained in:
parent
98b8d49c0c
commit
b0796437d4
2 changed files with 6 additions and 3 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
461. [bug] Specifying an unknown key in the keys clause of the
|
||||
controls statement caused a NULL pointer dereference.
|
||||
|
||||
460. [bug] Much of the DNSSEC code only worked with class IN.
|
||||
|
||||
459. [bug] Nslookup error in processing set command.
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: omapiconf.c,v 1.11 2000/08/26 01:46:42 gson Exp $ */
|
||||
/* $Id: omapiconf.c,v 1.12 2000/09/15 03:22:45 tale Exp $ */
|
||||
|
||||
/*
|
||||
* Principal Author: DCL
|
||||
|
|
@ -234,9 +234,9 @@ register_keys(dns_c_ctrl_t *control, dns_c_kdeflist_t *keydeflist,
|
|||
if (result != ISC_R_SUCCESS)
|
||||
isc_log_write(ns_g_lctx, ISC_LOGCATEGORY_GENERAL,
|
||||
NS_LOGMODULE_OMAPI, ISC_LOG_WARNING,
|
||||
"couldn't find key %s for"
|
||||
"couldn't find key %s for "
|
||||
"use with command channel %s",
|
||||
keydef->keyid, socktext);
|
||||
keyid->keyid, socktext);
|
||||
else if (strcasecmp(keydef->algorithm, "hmac-md5") != 0) {
|
||||
isc_log_write(ns_g_lctx, ISC_LOGCATEGORY_GENERAL,
|
||||
NS_LOGMODULE_OMAPI, ISC_LOG_WARNING,
|
||||
|
|
|
|||
Loading…
Reference in a new issue