Index: trunk/src_plugins/import_dsn/dsn.c =================================================================== --- trunk/src_plugins/import_dsn/dsn.c (revision 35229) +++ trunk/src_plugins/import_dsn/dsn.c (revision 35230) @@ -146,7 +146,7 @@ { const gsxl_node_t *n; for(n = wire->children; n != NULL; n = n->next) { - if ((type == TYPE_PCB) && (strcmp(n->str, "polyline_path") == 0)) + if ((type == TYPE_PCB) && ((strcmp(n->str, "polyline_path") == 0) || (strcmp(n->str, "path") == 0))) parse_polyline(nlines, clear, n, "mm", 1); else if ((type == TYPE_SESSION) && (strcmp(n->str, "path") == 0)) parse_polyline(nlines, clear, n, "nm", 0);