From cb7105cb923b786e1ce1f49c1456db538bae0d87 Mon Sep 17 00:00:00 2001 From: Andrej Kacian Date: Tue, 16 Jun 2015 22:54:36 +0200 Subject: [PATCH] RSSyl: Use g_mkstemp() instead of mkstemp() --- src/plugins/rssyl/claws.def | 1 - src/plugins/rssyl/rssyl_add_item.c | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/plugins/rssyl/claws.def b/src/plugins/rssyl/claws.def index da5dcbdcf..8e9425554 100644 --- 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 index 3f05cb1e4..c2258f9e8 100644 --- 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; } -- 2.25.1