RSSyl: Use g_mkstemp() instead of mkstemp()
[claws.git] / src / plugins / rssyl / rssyl_add_item.c
index 3f05cb1e4bb8b1beb6c8f019e1d7af7091d55079..c2258f9e842266e105cb3fb0f1a6a2af09392fea 100644 (file)
@@ -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;
        }