mirror of
https://github.com/RTimothyEdwards/magic.git
synced 2026-08-22 14:17:43 +02:00
Corrected node merging, which failed to copy the EF_TOP_PORT flag
bit into the merged node. Corrected reference to efNodeHashTable to the more proper call to EFHNLook().
This commit is contained in:
@@ -1299,12 +1299,11 @@ char *nodeSpiceHierName(hc, hname)
|
||||
HierName *hname;
|
||||
{
|
||||
EFNodeName *nn;
|
||||
HashEntry *he;
|
||||
HashEntry *he, *he2;
|
||||
EFNode *node;
|
||||
Def *def = hc->hc_use->use_def;
|
||||
|
||||
// he = HashLookOnly(&def->def_nodes, EFHNToStr(hname));
|
||||
he = HashLookOnly(&efNodeHashTable, (char *)hname);
|
||||
he = EFHNLook(hname, NULL, "ext2spice");
|
||||
if (he == NULL) return "error";
|
||||
|
||||
nn = (EFNodeName *) HashGetValue(he);
|
||||
|
||||
Reference in New Issue
Block a user