Report information
The Basics
Id:
36008
Status:
resolved
Priority:
Medium/Medium
Queue:

People
Owner:
Nobody in particular
Requestors:
Cc:
AdminCc:

BugTracker
Version Fixed:
9.9.6-S1, 9.10.1, 9.11.0
Version Found:
(no value)
Versions Affected:
(no value)
Versions Planned:
(no value)
Priority:
(no value)
Severity:
S3 Low
CVSS Score:
(no value)
CVE ID:
(no value)
Component:
(no value)
Area:
bug

Dates
Created:Wed, 14 May 2014 15:55:03 -0400
Updated:Thu, 03 Aug 2017 09:27:28 -0400
Closed:Wed, 14 May 2014 21:27:18 -0400



This bug tracker is no longer active.

Please go to our Gitlab to submit issues (both feature requests and bug reports) for active projects maintained by Internet Systems Consortium (ISC).

Due to security and confidentiality requirements, full access is limited to the primary maintainers.

Subject: json patch for statistics channel warning
Date: Wed, 14 May 2014 14:54:51 -0500 (CDT)
To: bind9-bugs@isc.org
From: "Jeremy C. Reed" <jreed@isc.org>
14-May-2014 19:48:16.642 statistics-channels specified but not effective due to missing XML library 14-May-2014 19:48:16.643 statistics channel listening on 127.0.0.1#8080 I am using: $ grep JSON ../../config.h #define HAVE_JSON 1 Okay to commit the following? +++ b/bin/named/statschannel.c @@ -2353,11 +2353,11 @@ ns_statschannels_configure(ns_server_t *server, const cfg_obj_t *config, * address-in-use error. */ if (statschannellist != NULL) { -#ifndef HAVE_LIBXML2 +#if !defined(HAVE_LIBXML2) && !defined(HAVE_JSON) isc_log_write(ns_g_lctx, NS_LOGCATEGORY_GENERAL, NS_LOGMODULE_SERVER, ISC_LOG_WARNING, "statistics-channels specified but not effective " - "due to missing XML library"); + "due to missing XML or JSON library"); #endif Jeremy C. Reed ISC
CC: undisclosed-recipients: ;
Subject: Re: [ISC-Bugs #36008] json patch for statistics channel warning
Date: Wed, 14 May 2014 20:10:29 +0000
To: "jreed@isc.org via RT" <bind9-bugs@isc.org>
From: Evan Hunt <each@isc.org>
> Okay to commit the following? Yes. To master, v9_10, and v9_9_sub, please