Index: excitation.c =================================================================== --- excitation.c (revision 31004) +++ excitation.c (revision 31005) @@ -147,7 +147,7 @@ { const rnd_unit_t *u; double d; - if (!pcb_get_value_unit(s, NULL, 0, &d, &u)) + if (!rnd_get_value_unit(s, NULL, 0, &d, &u)) return pcb_false; if (u->family != PCB_UNIT_FREQ) return pcb_false; Index: mesh.c =================================================================== --- mesh.c (revision 31004) +++ mesh.c (revision 31005) @@ -208,7 +208,7 @@ rnd_message(RND_MSG_ERROR, "Invalid mesh item: " #name " should be text\n"); \ return -1; \ } \ - v = pcb_get_value(n->data.text.value, NULL, NULL, &succ); \ + v = rnd_get_value(n->data.text.value, NULL, NULL, &succ); \ if (!succ) { \ rnd_message(RND_MSG_ERROR, "Invalid mesh coord: " #name "\n"); \ return -1; \