]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
struct fr_dict should be fr_dict_s
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 10 Oct 2024 19:15:29 +0000 (15:15 -0400)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 10 Oct 2024 22:25:18 +0000 (18:25 -0400)
src/lib/util/dict.h
src/lib/util/dict_priv.h

index 9cc5efd2a443122ce795d1c4f72a931565e80131..39dc6834f9d849417fd85c07d24df22962a9da46 100644 (file)
@@ -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;
 
index ffe704f92806e0bb6b78a7aa52eeff6b73e2b96f..fef203c1236626565e9ef33a0f0bb76149c7dff7 100644 (file)
@@ -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.