aboutsummaryrefslogtreecommitdiff
path: root/src/prefs.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-08-08 07:07:19 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-08-08 07:07:19 +0000
commite5c03181ba3cd06f27e10677960575e44e7900a6 (patch)
treecfa341f7b9c46b2c7b692e11def79e72622152ab /src/prefs.c
parent38ad5762fb87ec8278108d4a8d06e32612e64a13 (diff)
added wrappers for C library function that take pathname arguments.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@478 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/prefs.c')
-rw-r--r--src/prefs.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/prefs.c b/src/prefs.c
index 7fb6f666..759a1564 100644
--- a/src/prefs.c
+++ b/src/prefs.c
@@ -56,7 +56,7 @@ void prefs_read_config(PrefParam *param, const gchar *label,
prefs_set_default(param);
- if ((fp = fopen(rcfile, "rb")) == NULL) {
+ if ((fp = g_fopen(rcfile, "rb")) == NULL) {
if (ENOENT != errno) FILE_OP_ERROR(rcfile, "fopen");
return;
}
@@ -178,7 +178,7 @@ void prefs_write_config(PrefParam *param, const gchar *label,
g_return_if_fail(rcfile != NULL);
rcpath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, rcfile, NULL);
- if ((orig_fp = fopen(rcpath, "rb")) == NULL) {
+ if ((orig_fp = g_fopen(rcpath, "rb")) == NULL) {
if (ENOENT != errno) FILE_OP_ERROR(rcpath, "fopen");
}
@@ -286,7 +286,7 @@ PrefFile *prefs_file_open(const gchar *path)
g_return_val_if_fail(path != NULL, NULL);
tmppath = g_strconcat(path, ".tmp", NULL);
- if ((fp = fopen(tmppath, "wb")) == NULL) {
+ if ((fp = g_fopen(tmppath, "wb")) == NULL) {
FILE_OP_ERROR(tmppath, "fopen");
g_free(tmppath);
return NULL;
@@ -320,7 +320,7 @@ gint prefs_file_close(PrefFile *pfile)
tmppath = g_strconcat(path, ".tmp", NULL);
if (fclose(fp) == EOF) {
FILE_OP_ERROR(tmppath, "fclose");
- unlink(tmppath);
+ g_unlink(tmppath);
g_free(path);
g_free(tmppath);
return -1;
@@ -330,7 +330,7 @@ gint prefs_file_close(PrefFile *pfile)
bakpath = g_strconcat(path, ".bak", NULL);
if (rename_force(path, bakpath) < 0) {
FILE_OP_ERROR(path, "rename");
- unlink(tmppath);
+ g_unlink(tmppath);
g_free(path);
g_free(tmppath);
g_free(bakpath);
@@ -340,7 +340,7 @@ gint prefs_file_close(PrefFile *pfile)
if (rename_force(tmppath, path) < 0) {
FILE_OP_ERROR(tmppath, "rename");
- unlink(tmppath);
+ g_unlink(tmppath);
g_free(path);
g_free(tmppath);
g_free(bakpath);
@@ -361,7 +361,8 @@ gint prefs_file_close_revert(PrefFile *pfile)
tmppath = g_strconcat(pfile->path, ".tmp", NULL);
fclose(pfile->fp);
- if (unlink(tmppath) < 0) FILE_OP_ERROR(tmppath, "unlink");
+ if (g_unlink(tmppath) < 0)
+ FILE_OP_ERROR(tmppath, "unlink");
g_free(tmppath);
g_free(pfile->path);
g_free(pfile);