Index: oldactions.c =================================================================== --- oldactions.c (revision 30948) +++ oldactions.c (revision 30949) @@ -47,7 +47,7 @@ static void conf_toggle(rnd_conf_role_t role, const char *path) { - rnd_conf_native_t *n = pcb_conf_get_field(path); + rnd_conf_native_t *n = rnd_conf_get_field(path); if (n == NULL) { rnd_message(PCB_MSG_ERROR, "Error: can't find config node %s to toggle\n", path); return; @@ -57,7 +57,7 @@ return; } - pcb_conf_set(role, path, -1, n->val.boolean[0] ? "0" : "1", RND_POL_OVERWRITE); + rnd_conf_set(role, path, -1, n->val.boolean[0] ? "0" : "1", RND_POL_OVERWRITE); } static const char pcb_acts_DumpLibrary[] = "DumpLibrary()"; @@ -208,7 +208,7 @@ */ fgw_error_t pcb_act_EnableVendor(fgw_arg_t *res, int argc, fgw_arg_t *argv) { - pcb_conf_set(RND_CFR_DESIGN, "plugins/vendor/enable", -1, "1", RND_POL_OVERWRITE); + rnd_conf_set(RND_CFR_DESIGN, "plugins/vendor/enable", -1, "1", RND_POL_OVERWRITE); RND_ACT_IRES(0); return 0; } @@ -225,7 +225,7 @@ */ fgw_error_t pcb_act_DisableVendor(fgw_arg_t *res, int argc, fgw_arg_t *argv) { - pcb_conf_set(RND_CFR_DESIGN, "plugins/vendor/enable", -1, "0", RND_POL_OVERWRITE); + rnd_conf_set(RND_CFR_DESIGN, "plugins/vendor/enable", -1, "0", RND_POL_OVERWRITE); RND_ACT_IRES(0); return 0; }