Index: gsch2pcb-rnd/gsch2pcb.c =================================================================== --- gsch2pcb-rnd/gsch2pcb.c (revision 30949) +++ gsch2pcb-rnd/gsch2pcb.c (revision 30950) @@ -256,7 +256,7 @@ rnd_message(PCB_MSG_ERROR, "Failed to parse project file %s.\n", path); exit(1); } - pcb_conf_update(NULL, -1); /* because of our new project file */ + rnd_conf_update(NULL, -1); /* because of our new project file */ } static void load_extra_project_files(void) @@ -414,10 +414,10 @@ get_args(argc, argv); rnd_conf_load_all(NULL, NULL); - pcb_conf_update(NULL, -1); + rnd_conf_update(NULL, -1); load_extra_project_files(); - pcb_conf_update(NULL, -1); /* because of CLI changes */ + rnd_conf_update(NULL, -1); /* because of CLI changes */ if (!have_cli_project_file && !have_cli_schematics) { if (!rnd_file_readable(LOCAL_PROJECT_FILE)) { @@ -428,7 +428,7 @@ rnd_message(PCB_MSG_ERROR, "Failed to load project file %s. Try %s --help\n", LOCAL_PROJECT_FILE, argv[0]); exit(1); } - pcb_conf_update(NULL, -1); /* because of our new project file */ + rnd_conf_update(NULL, -1); /* because of our new project file */ } else if ((local_project_pcb_name != NULL) && (!have_cli_project_file)) rnd_conf_load_project(NULL, local_project_pcb_name); @@ -455,7 +455,7 @@ exit(1); } - pcb_conf_update(NULL, -1); /* because of the project file */ + rnd_conf_update(NULL, -1); /* because of the project file */ want_method = conf_g2pr.utils.gsch2pcb_rnd.method; if (want_method == NULL) { @@ -484,7 +484,7 @@ } current_method->init(); - pcb_conf_update(NULL, -1); + rnd_conf_update(NULL, -1); current_method->go(); /* the traditional, "parse element and edit the pcb file" approach */