]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
1922. [bug] check-tool.c:setup_logging() missing call to
authorMark Andrews <marka@isc.org>
Fri, 30 Sep 2005 08:22:58 +0000 (08:22 +0000)
committerMark Andrews <marka@isc.org>
Fri, 30 Sep 2005 08:22:58 +0000 (08:22 +0000)
                        dns_log_setcontext().

CHANGES
bin/check/check-tool.c

diff --git a/CHANGES b/CHANGES
index a118f6849625ae234068977a207e06acb3902170..4c08cc92dc77c3d914e3e911453230b542c2fec8 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+1922.  [bug]           check-tool.c:setup_logging() missing call to
+                       dns_log_setcontext().
+
 1921.  [bug]           Client memory contexts were not using internal
                        malloc. [RT# 15434]
 
index 82db3fce525d62e3a047bb440d1f106f8242faab..afaf2fcb92642918dadbd0e0537c86e8400ae658 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: check-tool.c,v 1.10.18.9 2005/09/05 00:18:09 marka Exp $ */
+/* $Id: check-tool.c,v 1.10.18.10 2005/09/30 08:22:58 marka Exp $ */
 
 /*! \file */
 
@@ -370,6 +370,7 @@ setup_logging(isc_mem_t *mctx, isc_log_t **logp) {
        isc_log_registercategories(log, categories);
        isc_log_setcontext(log);
        dns_log_init(log);
+       dns_log_setcontext(log);
 
        destination.file.stream = stdout;
        destination.file.name = NULL;