Index: edif.c =================================================================== --- edif.c (revision 31016) +++ edif.c (revision 31017) @@ -5873,7 +5873,7 @@ * Set up the file state to something useful. */ InFile = filename; - Input = pcb_fopen(&PCB->hidlib, filename, "r"); + Input = rnd_fopen(&PCB->hidlib, filename, "r"); Error = err; LineNumber = 1; /* Index: edif.y =================================================================== --- edif.y (revision 31016) +++ edif.y (revision 31017) @@ -4075,7 +4075,7 @@ * Set up the file state to something useful. */ InFile = filename; - Input = pcb_fopen(&PCB->hidlib, filename, "r"); + Input = rnd_fopen(&PCB->hidlib, filename, "r"); Error = err; LineNumber = 1; /* Index: import_edif.c =================================================================== --- import_edif.c (revision 31016) +++ import_edif.c (revision 31017) @@ -51,7 +51,7 @@ if (aspects != IMPORT_ASPECT_NETLIST) return 0; /* only pure netlist import is supported */ - fp = pcb_fopen(&PCB->hidlib, args[0], "r"); + fp = rnd_fopen(&PCB->hidlib, args[0], "r"); if (fp == NULL) return 0; /* only importing from a file is supported */