Index: dlg.c =================================================================== --- dlg.c (revision 31004) +++ dlg.c (revision 31005) @@ -136,7 +136,7 @@ lht_node_t *nnew; \ lht_err_t err; \ char *nname0 = nname; \ - if (parent->type == LHT_LIST) nname0 = pcb_concat(nname, ":0", NULL); \ + if (parent->type == LHT_LIST) nname0 = rnd_concat(nname, ":0", NULL); \ nnew = lht_tree_path_(parent->doc, parent, nname0, 1, 1, &err); \ if (parent->type == LHT_LIST) free(nname0); \ if ((nnew != NULL) && (nnew->type != ntype)) { \ @@ -235,7 +235,7 @@ } } - path = pcb_concat(DRC_CONF_PATH_RULES, rule, ":0", NULL); + path = rnd_concat(DRC_CONF_PATH_RULES, rule, ":0", NULL); nd = rnd_conf_lht_get_at_mainplug(role, path, 1, 0); if (nd == NULL) { rnd_message(RND_MSG_ERROR, "Rule %s not found on this role.\n", rule); @@ -460,7 +460,7 @@ #define rlist_fetch_nd() \ do { \ - char *path = pcb_concat(DRC_CONF_PATH_RULES, row->cell[0], ":0", NULL); \ + char *path = rnd_concat(DRC_CONF_PATH_RULES, row->cell[0], ":0", NULL); \ nd = rnd_conf_lht_get_at_mainplug(role, path, 1, 0); \ if (nd == NULL) { \ rnd_message(RND_MSG_ERROR, "internal error: rule not found at %s\n", path); \ Index: drc_query.c =================================================================== --- drc_query.c (revision 31004) +++ drc_query.c (revision 31005) @@ -192,7 +192,7 @@ static int *drc_get_disable(const char *name) { - char *path = pcb_concat(DRC_CONF_PATH_DISABLE, name, NULL); + char *path = rnd_concat(DRC_CONF_PATH_DISABLE, name, NULL); rnd_conf_native_t *nat = rnd_conf_get_field(path); free(path); if ((nat == NULL) || (nat->type != RND_CFN_BOOLEAN)) @@ -257,7 +257,7 @@ if (nat_rules == cfg) { lht_node_t *nd = i->prop.src; - char *path = pcb_concat(DRC_CONF_PATH_DISABLE, nd->name, NULL); + char *path = rnd_concat(DRC_CONF_PATH_DISABLE, nd->name, NULL); if (rnd_conf_get_field(path) == NULL) { const char *sdesc; @@ -287,7 +287,7 @@ } else if (nat_defs == cfg) { lht_node_t *nd = i->prop.src; - char *path = pcb_concat(DRC_CONF_PATH_CONST, nd->name, NULL); + char *path = rnd_concat(DRC_CONF_PATH_CONST, nd->name, NULL); rnd_coord_t *c; if (rnd_conf_get_field(path) == NULL) {