Index: vendor.c =================================================================== --- vendor.c (revision 30948) +++ vendor.c (revision 30949) @@ -97,7 +97,7 @@ { char tmp[128]; pcb_sprintf(tmp, "%$mm", crd); - pcb_conf_set(RND_CFR_DESIGN, path, -1, tmp, RND_POL_OVERWRITE); + rnd_conf_set(RND_CFR_DESIGN, path, -1, tmp, RND_POL_OVERWRITE); } static rnd_bool vendorIsSubcMappable(pcb_subc_t *subc); @@ -270,7 +270,7 @@ rnd_message(PCB_MSG_INFO, "Loaded %d vendor drills from %s\n", n_vendor_drills, fname); rnd_message(PCB_MSG_INFO, "Loaded %d RefDes skips, %d Value skips, %d Descr skips\n", n_refdes, n_value, n_descr); - 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); apply_vendor_map(); if (free_fname) @@ -659,7 +659,7 @@ pcb_event_unbind_allcookie(vendor_cookie); rnd_remove_actions_by_cookie(vendor_cookie); vendor_free_all(); - pcb_conf_unreg_fields("plugins/vendor/"); + rnd_conf_unreg_fields("plugins/vendor/"); } int pplg_init_vendordrill(void) @@ -666,7 +666,7 @@ { PCB_API_CHK_VER; #define conf_reg(field,isarray,type_name,cpath,cname,desc,flags) \ - pcb_conf_reg_field(conf_vendor, field,isarray,type_name,cpath,cname,desc,flags); + rnd_conf_reg_field(conf_vendor, field,isarray,type_name,cpath,cname,desc,flags); #include "vendor_conf_fields.h" pcb_event_bind(PCB_EVENT_NEW_PSTK, vendor_new_pstk, NULL, vendor_cookie);