| 148 | } |
| 149 | |
| 150 | ACL_JSON_NODE *acl_json_node_rerase(ACL_JSON_NODE *node, ACL_ITER *it) |
| 151 | { |
| 152 | ACL_JSON_NODE *curr = (ACL_JSON_NODE*) it->data; |
| 153 | ACL_JSON_NODE *next = node->iter_prev(it, node); |
| 154 | if (curr) { |
| 155 | acl_json_node_delete(curr); |
| 156 | } |
| 157 | return next; |
| 158 | } |
| 159 | |
| 160 | void acl_json_node_disable(ACL_JSON_NODE *node, int yes) |
| 161 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…