Files: use the new open() wrappers

Adds use of everything from the new wrappers(), but the
opendir() one.

Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Lubomir I. Ivanov 2013-12-19 15:00:51 +02:00 committed by Dirk Hohndel
parent f487953ad3
commit fbff6127ac
3 changed files with 13 additions and 13 deletions

View file

@ -578,7 +578,7 @@ void save_dives_logic(const char *filename, const bool select_only)
struct dive *dive;
dive_trip_t *trip;
FILE *f = fopen(filename, "w");
FILE *f = subsurface_fopen(filename, "w");
if (!f)
return;
@ -639,7 +639,7 @@ void export_dives_uddf(const char *filename, const bool selected)
/* Save XML to file and convert it into a memory buffer */
save_dives_logic(filename, selected);
f = fopen(filename, "r");
f = subsurface_fopen(filename, "r");
fseek(f, 0, SEEK_END);
streamsize = ftell(f);
rewind(f);
@ -677,7 +677,7 @@ void export_dives_uddf(const char *filename, const bool selected)
xmlFreeDoc(doc);
/* Write the transformed XML to file */
f = fopen(filename, "w");
f = subsurface_fopen(filename, "w");
xmlDocFormatDump(f, transformed, 1);
xmlFreeDoc(transformed);