Index: plug_footprint_act.c =================================================================== --- plug_footprint_act.c (revision 30902) +++ plug_footprint_act.c (revision 30903) @@ -49,25 +49,25 @@ l = pcb_fp_lib_search(&pcb_library, name); if (l == NULL) { - pcb_message(PCB_MSG_ERROR, "Can't find library path %s\n", name); + rnd_message(PCB_MSG_ERROR, "Can't find library path %s\n", name); RND_ACT_IRES(1); return 0; } if (l->type != PCB_LIB_DIR) { - pcb_message(PCB_MSG_ERROR, "Library path %s is not a directory\n", name); + rnd_message(PCB_MSG_ERROR, "Library path %s is not a directory\n", name); RND_ACT_IRES(1); return 0; } if (l->data.dir.backend == NULL) { - pcb_message(PCB_MSG_ERROR, "Library path %s is not a top level directory of a fp_ plugin\n", name); + rnd_message(PCB_MSG_ERROR, "Library path %s is not a top level directory of a fp_ plugin\n", name); RND_ACT_IRES(1); return 0; } if (pcb_fp_rehash(RND_ACT_HIDLIB, l) != 0) { - pcb_message(PCB_MSG_ERROR, "Failed to rehash %s\n", name); + rnd_message(PCB_MSG_ERROR, "Failed to rehash %s\n", name); RND_ACT_IRES(1); return 0; }