commit cb7105cb923b786e1ce1f49c1456db538bae0d87
parent d510ecf8b865ce63b4074692eb8c80c0bfe7d704
Author: Andrej Kacian <ticho@claws-mail.org>
Date: Tue, 16 Jun 2015 22:54:36 +0200
RSSyl: Use g_mkstemp() instead of mkstemp()
Diffstat:
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/src/plugins/rssyl/claws.def b/src/plugins/rssyl/claws.def
@@ -84,7 +84,6 @@ mainwindow_get_mainwindow
make_dir
make_dir_hier
mh_get_class
-mkstemp
move_file
msgcache_destroy
prefs_common
diff --git a/src/plugins/rssyl/rssyl_add_item.c b/src/plugins/rssyl/rssyl_add_item.c
@@ -374,8 +374,8 @@ void rssyl_add_item(RFolderItem *ritem, FeedItem *feed_item)
dirname = folder_item_get_path(&ritem->item);
template = g_strconcat(dirname, G_DIR_SEPARATOR_S,
RSSYL_TMP_TEMPLATE, NULL);
- if ((fd = mkstemp(template)) < 0) {
- g_warning("Couldn't mkstemp('%s'), not adding message!\n", template);
+ if ((fd = g_mkstemp(template)) < 0) {
+ g_warning("Couldn't g_mkstemp('%s'), not adding message!\n", template);
g_free(template);
return;
}