Index: trunk/src_plugins/drc_query/drc_query.c =================================================================== --- trunk/src_plugins/drc_query/drc_query.c (revision 30204) +++ trunk/src_plugins/drc_query/drc_query.c (revision 30205) @@ -224,13 +224,13 @@ if (stype == NULL) { - pcb_message(PCB_MSG_ERROR, "query_drc: missing type field for constant %s\n", nd->name); + pcb_message(PCB_MSG_ERROR, "drc_query: missing type field for constant %s\n", nd->name); goto fail; } type = pcb_conf_native_type_parse(stype); if (type >= CFN_LIST) { - pcb_message(PCB_MSG_ERROR, "query_drc: invalid type '%s' for %s\n", stype, nd->name); + pcb_message(PCB_MSG_ERROR, "drc_query: invalid type '%s' for %s\n", stype, nd->name); goto fail; } @@ -243,7 +243,7 @@ sdefault = tmp.array; } else - pcb_message(PCB_MSG_ERROR, "query_drc: invalid legacy path '%s' for %s\n", slegacy, nd->name); + pcb_message(PCB_MSG_ERROR, "drc_query: invalid legacy path '%s' for %s\n", slegacy, nd->name); } if (sdefault != NULL) pcb_conf_set(CFR_INTERNAL, path, -1, sdefault, POL_OVERWRITE);