Index: change.c =================================================================== --- change.c (revision 32114) +++ change.c (revision 32115) @@ -938,7 +938,7 @@ char *curr_value = NULL, **slot; const char *new_val; - slot = rnd_attribute_get_ptr(&ca->obj->Attributes, ca->key); + slot = pcb_attribute_get_ptr(&ca->obj->Attributes, ca->key); /* temp save current state */ if (slot == NULL) @@ -949,8 +949,8 @@ /* install ca in the slot */ if (!ca->delete) { if (curr_delete) { - rnd_attribute_put(&ca->obj->Attributes, ca->key, NULL); - slot = rnd_attribute_get_ptr(&ca->obj->Attributes, ca->key); + pcb_attribute_put(&ca->obj->Attributes, ca->key, NULL); + slot = pcb_attribute_get_ptr(&ca->obj->Attributes, ca->key); } *slot = ca->value; new_val = ca->value; @@ -960,7 +960,7 @@ else { *slot = NULL; new_val = NULL; - rnd_attribute_remove(&ca->obj->Attributes, ca->key); + pcb_attribute_remove(&ca->obj->Attributes, ca->key); } @@ -1004,7 +1004,7 @@ if (key == NULL) return -1; - curr = rnd_attribute_get(&obj->Attributes, key); + curr = pcb_attribute_get(&obj->Attributes, key); if ((curr == NULL) && (new_value == NULL)) return 0; /* nothing to do: both delete */ if ((curr != NULL) && (new_value != NULL) && (strcmp(curr, new_value) == 0))