]> 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:25:38 +0000 (08:25 +0000)
committerMark Andrews <marka@isc.org>
Fri, 30 Sep 2005 08:25:38 +0000 (08:25 +0000)
                        dns_log_setcontext().

CHANGES
bin/check/check-tool.c

diff --git a/CHANGES b/CHANGES
index 349e890e616ba8203b7fe71cc7dfb3860cc1c0a2..a8274391a344f2b80b325340a596ace467277988 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 bbadf135bd3df6f0b5634453318020e6a20b6a5f..2521bf2801a8b88925c4a4e6812368a95a14653e 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: check-tool.c,v 1.20 2005/09/05 00:10:51 marka Exp $ */
+/* $Id: check-tool.c,v 1.21 2005/09/30 08:25:38 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;