From: Arran Cudbard-Bell Date: Fri, 8 Oct 2021 22:22:04 +0000 (-0500) Subject: Move "type" into the legacy stuff area X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c95096423ebd5d375dbc8469a2870272eaae688;p=thirdparty%2Ffreeradius-server.git Move "type" into the legacy stuff area --- diff --git a/src/lib/util/pair.h b/src/lib/util/pair.h index de653adca9e..58969baa326 100644 --- a/src/lib/util/pair.h +++ b/src/lib/util/pair.h @@ -101,8 +101,6 @@ struct value_pair_s { ///< received or inserted. - value_type_t type; //!< Type of pointer in value union. - /* * Pairs can have children or data but not both. */ @@ -118,6 +116,8 @@ struct value_pair_s { fr_token_t op; //!< Operator to use when moving or inserting //!< valuepair into a list. char const *xlat; //!< Source string for xlat expansion. + + value_type_t type; //!< Type of pointer in value union. }; };