Index: footprint.c =================================================================== --- footprint.c (revision 31016) +++ footprint.c (revision 31017) @@ -314,7 +314,7 @@ int res; FILE *f; - f = pcb_fopen_askovr(&PCB->hidlib, fn, "w", NULL); + f = rnd_fopen_askovr(&PCB->hidlib, fn, "w", NULL); if (f == NULL) { rnd_message(RND_MSG_ERROR, "tedax_fp_save(): can't open %s for writing\n", fn); return -1; @@ -645,7 +645,7 @@ FILE *f; int ret = 0; - f = pcb_fopen(&PCB->hidlib, fn, "r"); + f = rnd_fopen(&PCB->hidlib, fn, "r"); if (f == NULL) { rnd_message(RND_MSG_ERROR, "can't open file '%s' for read\n", fn); return -1; Index: stackup.c =================================================================== --- stackup.c (revision 31016) +++ stackup.c (revision 31017) @@ -333,7 +333,7 @@ FILE *f; tedax_stackup_t ctx; - f = pcb_fopen_askovr(&PCB->hidlib, fn, "w", NULL); + f = rnd_fopen_askovr(&PCB->hidlib, fn, "w", NULL); if (f == NULL) { rnd_message(RND_MSG_ERROR, "tedax_stackup_save(): can't open %s for writing\n", fn); return -1; @@ -416,7 +416,7 @@ FILE *f; tedax_stackup_t ctx; - f = pcb_fopen(&PCB->hidlib, fn, "r"); + f = rnd_fopen(&PCB->hidlib, fn, "r"); if (f == NULL) { rnd_message(RND_MSG_ERROR, "tedax_stackup_load(): can't open %s for reading\n", fn); return -1; Index: tboard.c =================================================================== --- tboard.c (revision 31016) +++ tboard.c (revision 31017) @@ -256,7 +256,7 @@ int res; FILE *f; - f = pcb_fopen_askovr(&PCB->hidlib, fn, "w", NULL); + f = rnd_fopen_askovr(&PCB->hidlib, fn, "w", NULL); if (f == NULL) { rnd_message(RND_MSG_ERROR, "tedax_board_save(): can't open %s for writing\n", fn); return -1; @@ -543,7 +543,7 @@ int res; FILE *f; - f = pcb_fopen(&PCB->hidlib, fn, "r"); + f = rnd_fopen(&PCB->hidlib, fn, "r"); if (f == NULL) { rnd_message(RND_MSG_ERROR, "tedax_board_load(): can't open %s for reading\n", fn); return -1; Index: tdrc.c =================================================================== --- tdrc.c (revision 31016) +++ tdrc.c (revision 31017) @@ -77,7 +77,7 @@ int res; FILE *f; - f = pcb_fopen_askovr(&PCB->hidlib, fn, "w", NULL); + f = rnd_fopen_askovr(&PCB->hidlib, fn, "w", NULL); if (f == NULL) { rnd_message(RND_MSG_ERROR, "tedax_drc_save(): can't open %s for writing\n", fn); return -1; @@ -133,7 +133,7 @@ int res; FILE *f; - f = pcb_fopen(&PCB->hidlib, fn, "r"); + f = rnd_fopen(&PCB->hidlib, fn, "r"); if (f == NULL) { rnd_message(RND_MSG_ERROR, "tedax_drc_load(): can't open %s for reading\n", fn); return -1; Index: tetest.c =================================================================== --- tetest.c (revision 31016) +++ tetest.c (revision 31017) @@ -159,7 +159,7 @@ int res; FILE *f; - f = pcb_fopen_askovr(&PCB->hidlib, fn, "w", NULL); + f = rnd_fopen_askovr(&PCB->hidlib, fn, "w", NULL); if (f == NULL) { rnd_message(RND_MSG_ERROR, "tedax_etest_save(): can't open %s for writing\n", fn); return -1; Index: tlayer.c =================================================================== --- tlayer.c (revision 31016) +++ tlayer.c (revision 31017) @@ -129,7 +129,7 @@ int res; FILE *f; - f = pcb_fopen_askovr(&PCB->hidlib, fn, "w", NULL); + f = rnd_fopen_askovr(&PCB->hidlib, fn, "w", NULL); if (f == NULL) { rnd_message(RND_MSG_ERROR, "tedax_layer_save(): can't open %s for writing\n", fn); return -1; @@ -365,7 +365,7 @@ int res; FILE *f; - f = pcb_fopen(&PCB->hidlib, fn, "r"); + f = rnd_fopen(&PCB->hidlib, fn, "r"); if (f == NULL) { rnd_message(RND_MSG_ERROR, "tedax_layers_load(): can't open %s for reading\n", fn); return -1; Index: tnetlist.c =================================================================== --- tnetlist.c (revision 31016) +++ tnetlist.c (revision 31017) @@ -156,7 +156,7 @@ FILE *fn; int ret = 0; - fn = pcb_fopen(&PCB->hidlib, fname_net, "r"); + fn = rnd_fopen(&PCB->hidlib, fname_net, "r"); if (fn == NULL) { rnd_message(RND_MSG_ERROR, "can't open file '%s' for read\n", fname_net); return -1; @@ -232,7 +232,7 @@ int res; FILE *f; - f = pcb_fopen_askovr(&PCB->hidlib, fn, "w", NULL); + f = rnd_fopen_askovr(&PCB->hidlib, fn, "w", NULL); if (f == NULL) { rnd_message(RND_MSG_ERROR, "tedax_net_save(): can't open %s for writing\n", fn); return -1; @@ -255,7 +255,7 @@ return 0; /* only pure netlist import is supported from a single file*/ - f = pcb_fopen(&PCB->hidlib, args[0], "r"); + f = rnd_fopen(&PCB->hidlib, args[0], "r"); if (f == NULL) return 0;