Index: dxf.c =================================================================== --- dxf.c (revision 31016) +++ dxf.c (revision 31017) @@ -286,7 +286,7 @@ filename = "pcb.dxf"; if (dxf_cam.fn_template == NULL) { - dxf_ctx.f = pcb_fopen_askovr(&PCB->hidlib, dxf_cam.active ? dxf_cam.fn : filename, "wb", NULL); + dxf_ctx.f = rnd_fopen_askovr(&PCB->hidlib, dxf_cam.active ? dxf_cam.fn : filename, "wb", NULL); if (!dxf_ctx.f) { perror(filename); return; @@ -303,7 +303,7 @@ else { char *real_fn; dxf_ctx.temp = NULL; - real_fn = pcb_fopen_check(&PCB->hidlib, fn, "r"); + real_fn = rnd_fopen_check(&PCB->hidlib, fn, "r"); if (real_fn != NULL) dxf_ctx.temp = lht_dom_load(real_fn, &errmsg); free(real_fn); @@ -367,7 +367,7 @@ fclose(dxf_ctx.f); } - dxf_ctx.f = pcb_fopen_askovr(&PCB->hidlib, dxf_cam.fn, "wb", NULL); + dxf_ctx.f = rnd_fopen_askovr(&PCB->hidlib, dxf_cam.fn, "wb", NULL); if (!dxf_ctx.f) { perror(dxf_cam.fn); return 0;