From 72160d9b51d902a7cf18de84953bc651941f73c2 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Fri, 30 Sep 2005 08:25:38 +0000 Subject: [PATCH] 1922. [bug] check-tool.c:setup_logging() missing call to dns_log_setcontext(). --- CHANGES | 3 +++ bin/check/check-tool.c | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 349e890e61..a8274391a3 100644 --- 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] diff --git a/bin/check/check-tool.c b/bin/check/check-tool.c index bbadf135bd..2521bf2801 100644 --- a/bin/check/check-tool.c +++ b/bin/check/check-tool.c @@ -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;