Index: xy.c =================================================================== --- xy.c (revision 30950) +++ xy.c (revision 30951) @@ -108,7 +108,7 @@ fmt_ids.used = 0; free_fmts(); - conf_loop_list(&conf_xy.plugins.export_xy.templates, li, idx) { + rnd_conf_loop_list(&conf_xy.plugins.export_xy.templates, li, idx) { char id[MAX_TEMP_NAME_LEN]; const char *sep = strchr(li->name, '.'); int len; @@ -755,7 +755,7 @@ pcb_conf_listitem_t *i; int n; - conf_loop_list(&conf_xy.plugins.export_xy.templates, i, n) { + rnd_conf_loop_list(&conf_xy.plugins.export_xy.templates, i, n) { char buff[256], *id, *sect; int nl = strlen(i->name); if (nl > sizeof(buff)-1) { @@ -781,7 +781,7 @@ int idx; sprintf(path, "%s.%s", tid, type); /* safe: tid's length is checked before it was put in the vector, type is hardwired in code and is never longer than a few chars */ - conf_loop_list(&conf_xy.plugins.export_xy.templates, li, idx) + rnd_conf_loop_list(&conf_xy.plugins.export_xy.templates, li, idx) if (strcmp(li->name, path) == 0) return li->payload; return NULL; @@ -851,7 +851,7 @@ void pplg_uninit_export_xy(void) { pcb_export_remove_opts_by_cookie(xy_cookie); - pcb_conf_unreg_file(CONF_FN, export_xy_conf_internal); + rnd_conf_unreg_file(CONF_FN, export_xy_conf_internal); rnd_conf_unreg_fields("plugins/export_xy/"); free_fmts(); vts0_uninit(&fmt_names); @@ -863,7 +863,7 @@ { PCB_API_CHK_VER; - pcb_conf_reg_file(CONF_FN, export_xy_conf_internal); + rnd_conf_reg_file(CONF_FN, export_xy_conf_internal); memset(&xy_hid, 0, sizeof(pcb_hid_t));