1724. [bug] Look for DNSKEY records with "dig +sigtrace".

[RT #12557]
This commit is contained in:
Mark Andrews
2004-10-05 03:00:57 +00:00
parent 263ed49ecd
commit 985afb86eb
2 changed files with 6 additions and 3 deletions
+3
View File
@@ -15,6 +15,9 @@
1726. [port] aix5: add support for aix5.
1724. [bug] Look for DNSKEY records with "dig +sigtrace".
[RT #12557]
1723. [cleanup] Silence compiler warnings from t_tasks.c. [RT #12493]
1722. [bug] Don't commit the journal on malformed ixfr streams.
+3 -3
View File
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: dighost.c,v 1.221.2.19.2.18 2004/09/30 23:58:53 marka Exp $ */
/* $Id: dighost.c,v 1.221.2.19.2.19 2004/10/05 03:00:57 marka Exp $ */
/*
* Notice to programmers: Do not use this code as an example of how to
@@ -3596,8 +3596,8 @@ get_trusted_key(isc_mem_t *mctx)
return ISC_R_FAILURE;
}
fclose(fptemp);
result = dst_key_fromnamedfile(filetemp, DST_TYPE_PUBLIC |
DST_TYPE_KEY, mctx, &key);
result = dst_key_fromnamedfile(filetemp, DST_TYPE_PUBLIC,
mctx, &key);
removetmpkey(mctx, filetemp);
isc_mem_free(mctx, filetemp);
if (result != ISC_R_SUCCESS ) {