| 442 | } |
| 443 | |
| 444 | static void |
| 445 | local_update_for_hash_entry(gpointer key, gpointer value, gpointer user_data) |
| 446 | { |
| 447 | attr_hash_entry_t *entry = value; |
| 448 | |
| 449 | if (entry->timer_id == 0) { |
| 450 | crm_trace("Performing local-only update after replace for %s", entry->id); |
| 451 | attrd_perform_update(entry); |
| 452 | /* } else { |
| 453 | * just let the timer expire and attrd_timer_callback() will do the right thing |
| 454 | */ |
| 455 | } |
| 456 | } |
| 457 | |
| 458 | static void |
| 459 | do_cib_replaced(const char *event, xmlNode * msg) |
nothing calls this directly
no test coverage detected