2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

[master] fix compile bug with json but no xml

3604.	[bug]		Fixed a compile-time error when building with
			JSON but not XML. [RT #33959]
This commit is contained in:
Evan Hunt
2013-06-26 14:12:27 -07:00
parent ca283f2ecb
commit 7aba1a9660
2 changed files with 4 additions and 1 deletions

View File

@@ -89,7 +89,7 @@ typedef enum {
task_state_done
} task_state_t;
#if defined(HAVE_LIBXML2)
#if defined(HAVE_LIBXML2) || defined(HAVE_JSON)
static const char *statenames[] = {
"idle", "ready", "running", "done",
};