From: Alan T. DeKok Date: Thu, 9 Dec 2021 20:21:53 +0000 (-0500) Subject: remove unused fields X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14ab069ee6cec4fc007206e94d8574b1a87166cd;p=thirdparty%2Ffreeradius-server.git remove unused fields --- diff --git a/src/lib/unlang/edit.c b/src/lib/unlang/edit.c index 1a99a03487..10817e67ff 100644 --- a/src/lib/unlang/edit.c +++ b/src/lib/unlang/edit.c @@ -49,7 +49,6 @@ typedef struct { fr_edit_list_t *el; //!< edit list fr_value_box_list_t lhs_result; //!< Result of expanding the LHS - int lhs_exec_status; //!< status of program on LHS. tmpl_t const *lhs; //!< expanded LHS tmpl tmpl_t *lhs_free; //!< expanded tmpl to free @@ -59,7 +58,6 @@ typedef struct { tmpl_t const *rhs; //!< expanded RHS tmpl tmpl_t *rhs_free; //!< expanded tmpl to free fr_value_box_list_t rhs_result; //!< Result of expanding the RHS. - int rhs_exec_status; //!< status of program on RHS. unlang_edit_state_t state; //!< What we're currently doing. } unlang_frame_state_edit_t; diff --git a/src/lib/unlang/map.c b/src/lib/unlang/map.c index 7ae0bae577..538cbe5fc7 100644 --- a/src/lib/unlang/map.c +++ b/src/lib/unlang/map.c @@ -49,9 +49,7 @@ typedef struct { fr_dlist_head_t vlm_head; //!< Head of list of VP List Mod. fr_value_box_list_t lhs_result; //!< Result of expanding the LHS - int lhs_exec_status; //!< status of program on LHS. fr_value_box_list_t rhs_result; //!< Result of expanding the RHS. - int rhs_exec_status; //!< status of program on RHS. unlang_update_state_t state; //!< What we're currently doing. } unlang_frame_state_update_t;