Index: trunk/src_plugins/import_mentor_sch/netlist_helper.c =================================================================== --- trunk/src_plugins/import_mentor_sch/netlist_helper.c (revision 7426) +++ trunk/src_plugins/import_mentor_sch/netlist_helper.c (revision 7427) @@ -232,10 +232,14 @@ footprint = htsp_get(&ectx->attr, "pcb-rnd-footprint"); if (footprint == NULL) footprint = htsp_get(&ectx->attr, "footprint"); + if (footprint == NULL) + footprint = htsp_get(&ectx->attr, "Footprint"); value = htsp_get(&ectx->attr, "pcb-rnd-value"); if (value == NULL) value = htsp_get(&ectx->attr, "value"); + if (value == NULL) + value = htsp_get(&ectx->attr, "Value"); refdes = htsp_get(&ectx->nhctx->id2refdes, ectx->id);