Index: edif.c =================================================================== --- edif.c (revision 30902) +++ edif.c (revision 30903) @@ -5782,7 +5782,7 @@ #ifdef DEBUG DumpStack(); #endif /* DEBUG */ - pcb_message(PCB_MSG_ERROR, "EDIF import error: %s, line %ld: %s\n",InFile,LineNumber,ers); + rnd_message(PCB_MSG_ERROR, "EDIF import error: %s, line %ld: %s\n",InFile,LineNumber,ers); } /* * String bucket definitions. @@ -6244,7 +6244,7 @@ int ReadEdifNetlist(char *filename) { - pcb_message(PCB_MSG_INFO,"Importing edif netlist %s\n", filename); + rnd_message(PCB_MSG_INFO,"Importing edif netlist %s\n", filename); ParseEDIF(filename, NULL); return 0; Index: edif.y =================================================================== --- edif.y (revision 30902) +++ edif.y (revision 30903) @@ -3984,7 +3984,7 @@ #ifdef DEBUG DumpStack(); #endif /* DEBUG */ - pcb_message(PCB_MSG_ERROR, "EDIF import error: %s, line %ld: %s\n",InFile,LineNumber,ers); + rnd_message(PCB_MSG_ERROR, "EDIF import error: %s, line %ld: %s\n",InFile,LineNumber,ers); } /* * String bucket definitions. @@ -4446,7 +4446,7 @@ int ReadEdifNetlist(char *filename) { - pcb_message(PCB_MSG_INFO,"Importing edif netlist %s\n", filename); + rnd_message(PCB_MSG_INFO,"Importing edif netlist %s\n", filename); ParseEDIF(filename, NULL); return 0; Index: import_edif.c =================================================================== --- import_edif.c (revision 30902) +++ import_edif.c (revision 30903) @@ -77,7 +77,7 @@ int ret; if (numfns != 1) { - pcb_message(PCB_MSG_ERROR, "import_edif: requires exactly 1 input file name\n"); + rnd_message(PCB_MSG_ERROR, "import_edif: requires exactly 1 input file name\n"); return -1; }