2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-28 13:08:06 +00:00

Silence IRIX warning:

"keytable.c", line 286: remark(1552): variable "knode" was set but never used
This commit is contained in:
David Lawrence 2000-05-13 20:23:17 +00:00
parent 56a2bee133
commit 0911d40d83

View File

@ -283,7 +283,6 @@ dns_keytable_finddeepestmatch(dns_keytable_t *keytable, dns_name_t *name,
dns_name_t *foundname)
{
isc_result_t result;
dns_keynode_t *knode;
void *data;
/*
@ -296,7 +295,6 @@ dns_keytable_finddeepestmatch(dns_keytable_t *keytable, dns_name_t *name,
RWLOCK(&keytable->rwlock, isc_rwlocktype_read);
knode = NULL;
data = NULL;
result = dns_rbt_findname(keytable->table, name, 0, foundname, &data);