| 4100 | } |
| 4101 | |
| 4102 | static void remove_role_user_mapping(ACL_USER_BASE *grantee, ACL_ROLE *role, |
| 4103 | int grantee_idx=-1, int role_idx=-1) |
| 4104 | { |
| 4105 | remove_ptr_from_dynarray(&grantee->role_grants, role); |
| 4106 | remove_ptr_from_dynarray(&role->parent_grantee, grantee); |
| 4107 | } |
| 4108 | |
| 4109 | |
| 4110 | static my_bool add_role_user_mapping_action(void *ptr, void *unused __attribute__((unused))) |
no test coverage detected