From: Arran Cudbard-Bell Date: Thu, 10 Oct 2024 19:15:29 +0000 (-0400) Subject: struct fr_dict should be fr_dict_s X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1da33d5598d0f0da550316cfb62367230b857922;p=thirdparty%2Ffreeradius-server.git struct fr_dict should be fr_dict_s --- diff --git a/src/lib/util/dict.h b/src/lib/util/dict.h index 9cc5efd2a44..39dc6834f9d 100644 --- a/src/lib/util/dict.h +++ b/src/lib/util/dict.h @@ -44,7 +44,7 @@ extern "C" { * Avoid circular type references. */ typedef struct dict_attr_s fr_dict_attr_t; -typedef struct fr_dict fr_dict_t; +typedef struct fr_dict_s fr_dict_t; typedef struct value_box_s fr_value_box_t; diff --git a/src/lib/util/dict_priv.h b/src/lib/util/dict_priv.h index ffe704f9280..fef203c1236 100644 --- a/src/lib/util/dict_priv.h +++ b/src/lib/util/dict_priv.h @@ -70,7 +70,7 @@ typedef struct { * * There would also be conflicts for DHCP(v6)/RADIUS attributes etc... */ -struct fr_dict { +struct fr_dict_s { fr_dict_gctx_t *gctx; //!< Global dictionary context this dictionary ///< was allocated in. bool read_only; //!< If true, disallow modifications.