From: Arran Cudbard-Bell Date: Thu, 31 Jul 2025 04:21:47 +0000 (-0700) Subject: No reason to add 'da' as part of the cursor struct X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ed2a9e6922e1a34d3a6a89ee671564fd30180d0b;p=thirdparty%2Ffreeradius-server.git No reason to add 'da' as part of the cursor struct --- diff --git a/src/lib/util/value.h b/src/lib/util/value.h index cab2b355f5..7f25f2d352 100644 --- a/src/lib/util/value.h +++ b/src/lib/util/value.h @@ -114,7 +114,6 @@ typedef union { struct { void * _CONST cursor; //!< cursors char const * _CONST name; //!< name of the current cursor - fr_dict_attr_t const * _CONST da; //!< dictionary reference }; /* @@ -149,6 +148,8 @@ typedef union { size_t size; //!< System specific file/memory size. fr_time_delta_t time_delta; //!< a delta time in nanoseconds + fr_dict_attr_t const * _CONST da; //!< dictionary reference + fr_value_box_list_t children; //!< for groups } fr_value_box_datum_t;