]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
remove unused fields
authorAlan T. DeKok <aland@freeradius.org>
Thu, 9 Dec 2021 20:21:53 +0000 (15:21 -0500)
committerAlan T. DeKok <aland@freeradius.org>
Thu, 9 Dec 2021 20:21:53 +0000 (15:21 -0500)
src/lib/unlang/edit.c
src/lib/unlang/map.c

index 1a99a03487f6fb845ea39dbee5f4708f62ff359a..10817e67ff4165bfa6bce929da3f171a91d1ff4d 100644 (file)
@@ -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;
index 7ae0bae577c5fdf3c617f3f4113b7485f794f621..538cbe5fc7ad9d9f31998ce35cac0cd4e4b168ac 100644 (file)
@@ -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;