From: Andrej Kacian Date: Tue, 16 Jun 2015 20:54:36 +0000 (+0200) Subject: RSSyl: Use g_mkstemp() instead of mkstemp() X-Git-Tag: 3.12.0~110 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=cb7105cb923b786e1ce1f49c1456db538bae0d87 RSSyl: Use g_mkstemp() instead of mkstemp() --- 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; }