Index: footprint.c =================================================================== --- footprint.c (revision 27072) +++ footprint.c (revision 27073) @@ -306,7 +306,7 @@ int res; FILE *f; - f = pcb_fopen(&PCB->hidlib, fn, "w"); + f = pcb_fopen_askovr(&PCB->hidlib, fn, "w", NULL); if (f == NULL) { pcb_message(PCB_MSG_ERROR, "tedax_fp_save(): can't open %s for writing\n", fn); return -1; Index: stackup.c =================================================================== --- stackup.c (revision 27072) +++ stackup.c (revision 27073) @@ -333,7 +333,7 @@ FILE *f; tedax_stackup_t ctx; - f = pcb_fopen(&PCB->hidlib, fn, "w"); + f = pcb_fopen_askovr(&PCB->hidlib, fn, "w", NULL); if (f == NULL) { pcb_message(PCB_MSG_ERROR, "tedax_stackup_save(): can't open %s for writing\n", fn); return -1; Index: tboard.c =================================================================== --- tboard.c (revision 27072) +++ tboard.c (revision 27073) @@ -256,7 +256,7 @@ int res; FILE *f; - f = pcb_fopen(&PCB->hidlib, fn, "w"); + f = pcb_fopen_askovr(&PCB->hidlib, fn, "w", NULL); if (f == NULL) { pcb_message(PCB_MSG_ERROR, "tedax_board_save(): can't open %s for writing\n", fn); return -1; Index: tdrc.c =================================================================== --- tdrc.c (revision 27072) +++ tdrc.c (revision 27073) @@ -77,7 +77,7 @@ int res; FILE *f; - f = pcb_fopen(&PCB->hidlib, fn, "w"); + f = pcb_fopen_askovr(&PCB->hidlib, fn, "w", NULL); if (f == NULL) { pcb_message(PCB_MSG_ERROR, "tedax_drc_save(): can't open %s for writing\n", fn); return -1; Index: tlayer.c =================================================================== --- tlayer.c (revision 27072) +++ tlayer.c (revision 27073) @@ -129,7 +129,7 @@ int res; FILE *f; - f = pcb_fopen(&PCB->hidlib, fn, "w"); + f = pcb_fopen_askovr(&PCB->hidlib, fn, "w", NULL); if (f == NULL) { pcb_message(PCB_MSG_ERROR, "tedax_layer_save(): can't open %s for writing\n", fn); return -1; Index: tnetlist.c =================================================================== --- tnetlist.c (revision 27072) +++ tnetlist.c (revision 27073) @@ -205,7 +205,7 @@ int res; FILE *f; - f = pcb_fopen(&PCB->hidlib, fn, "w"); + f = pcb_fopen_askovr(&PCB->hidlib, fn, "w", NULL); if (f == NULL) { pcb_message(PCB_MSG_ERROR, "tedax_net_save(): can't open %s for writing\n", fn); return -1;