Index: import_netlist.c =================================================================== --- import_netlist.c (revision 4861) +++ import_netlist.c (revision 4862) @@ -62,12 +62,12 @@ if (!filename) return (1); /* nothing to do */ - Message(PCB_MSG_DEFAULT, _("Importing PCB netlist %s\n"), filename); + pcb_message(PCB_MSG_DEFAULT, _("Importing PCB netlist %s\n"), filename); if (EMPTY_STRING_P(conf_core.rc.rat_command)) { fp = fopen(filename, "r"); if (!fp) { - Message(PCB_MSG_DEFAULT, "Cannot open %s for reading", filename); + pcb_message(PCB_MSG_DEFAULT, "Cannot open %s for reading", filename); return 1; } } @@ -81,7 +81,7 @@ /* open pipe to stdout of command */ if (*command == '\0' || (fp = popen(command, "r")) == NULL) { - PopenErrorMessage(command); + PopenErrorpcb_message(command); free(command); return (1); } @@ -98,7 +98,7 @@ /* check for maximum length line */ if (len) { if (inputline[--len] != '\n') - Message(PCB_MSG_DEFAULT, _("Line length (%i) exceeded in netlist file.\n" + pcb_message(PCB_MSG_DEFAULT, _("Line length (%i) exceeded in netlist file.\n" "additional characters will be ignored.\n"), MAX_NETLIST_LINE_LENGTH); else inputline[len] = '\0'; @@ -145,7 +145,7 @@ kind = 0; } if (!lines) { - Message(PCB_MSG_DEFAULT, _("Empty netlist file!\n")); + pcb_message(PCB_MSG_DEFAULT, _("Empty netlist file!\n")); pclose(fp); return (1); }