From 6fc47b372499220519782b09191fb15d8e7c0c8e Mon Sep 17 00:00:00 2001 From: Colin Vidal Date: Thu, 19 Dec 2024 15:35:26 +0100 Subject: [PATCH] fixup! Introduction of cfgmgr --- lib/isc/include/isc/cfgmgr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/isc/include/isc/cfgmgr.h b/lib/isc/include/isc/cfgmgr.h index f4a449192f..db0650d691 100644 --- a/lib/isc/include/isc/cfgmgr.h +++ b/lib/isc/include/isc/cfgmgr.h @@ -19,7 +19,7 @@ /* * Supported data types for read/write operations from/to cfgmgr. */ -typedef enum { +typedef enum isc_cfgmgr_type { ISC_CFGMGR_UNDEFINED = 0, ISC_CFGMGR_STRING, ISC_CFGMGR_BOOLEAN, @@ -34,7 +34,7 @@ typedef enum { * * cfgmgr_type_t::NONE doesn't have associated value, */ -typedef struct { +typedef struct isc_cfgmgr_val { isc_cfgmgr_type_t type; union { const char *string;