| 661 | }; |
| 662 | |
| 663 | static void |
| 664 | unpack_attr_set(gpointer data, gpointer user_data) |
| 665 | { |
| 666 | sorted_set_t *pair = data; |
| 667 | struct unpack_data_s *unpack_data = user_data; |
| 668 | |
| 669 | if (test_ruleset(pair->attr_set, unpack_data->node_hash, unpack_data->now) == FALSE) { |
| 670 | return; |
| 671 | } |
| 672 | |
| 673 | crm_trace("Adding attributes from %s", pair->name); |
| 674 | populate_hash(pair->attr_set, unpack_data->hash, unpack_data->overwrite); |
| 675 | } |
| 676 | |
| 677 | void |
| 678 | unpack_instance_attributes(xmlNode * top, xmlNode * xml_obj, const char *set_name, |
nothing calls this directly
no test coverage detected