]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
1724. [bug] Look for DNSKEY records with "dig +sigtrace".
authorMark Andrews <marka@isc.org>
Tue, 5 Oct 2004 03:01:47 +0000 (03:01 +0000)
committerMark Andrews <marka@isc.org>
Tue, 5 Oct 2004 03:01:47 +0000 (03:01 +0000)
                        [RT #12557]

CHANGES
bin/dig/dighost.c

diff --git a/CHANGES b/CHANGES
index 7f1aeef5602d1d8d8627908fba4be3c142e45368..5f4a1d991466d4fe44fd497b938afc890c25978f 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -29,7 +29,8 @@
 
 1725.  [placeholder]   rt12541
 
-1724.  [placeholder]   rt12557
+1724.  [bug]           Look for DNSKEY records with "dig +sigtrace".
+                       [RT #12557]
 
 1723.  [cleanup]       Silence compiler warnings from t_tasks.c. [RT #12493]
 
index 3c44458a9f5abcf8cb6b02ecce1fd5adb43f63cd..a77a5a732b2faa898c49466dffd0934035ce85f6 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: dighost.c,v 1.268 2004/09/30 23:56:22 marka Exp $ */
+/* $Id: dighost.c,v 1.269 2004/10/05 03:01:47 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 ) {