return TRUE;
}
-/* format string must have two '%s':
- *
- * - the place for the filename
- * - the place for the strerror
- */
-static void
-format_error_message (GError **error,
- const gchar *filename,
+static char *
+format_error_message (const gchar *filename,
+ const gchar *format_string) G_GNUC_FORMAT(2);
+
+static char *
+format_error_message (const gchar *filename,
const gchar *format_string)
{
gint saved_errno = errno;
gchar *display_name;
+ gchar *msg;
+
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wformat-nonliteral"
display_name = g_filename_display_name (filename);
+ msg = g_strdup_printf (format_string, display_name, g_strerror (saved_errno));
+ g_free (display_name);
- g_set_error (error, G_FILE_ERROR, g_file_error_from_errno (saved_errno),
- format_string, display_name, g_strerror (saved_errno));
+#pragma GCC diagnostic pop
- g_free (display_name);
+ return msg;
+}
+
+/* format string must have two '%s':
+ *
+ * - the place for the filename
+ * - the place for the strerror
+ */
+static void
+set_file_error (GError **error,
+ const gchar *filename,
+ const gchar *format_string)
+
+{
+ int saved_errno = errno;
+ char *msg = format_error_message (filename, format_string);
+
+ g_set_error_literal (error, G_FILE_ERROR, g_file_error_from_errno (saved_errno),
+ msg);
+ g_free (msg);
}
static gchar *
if (fd == -1)
{
- format_error_message (err, tmp_name, _("Failed to create file '%s': %s"));
+ set_file_error (err, tmp_name, _("Failed to create file '%s': %s"));
goto out;
}
if (errno == EINTR)
continue;
- format_error_message (err, tmp_name, _("Failed to write file '%s': write() failed: %s"));
+ set_file_error (err, tmp_name, _("Failed to write file '%s': write() failed: %s"));
close (fd);
g_unlink (tmp_name);
*/
if (g_lstat (dest_file, &statbuf) == 0 && statbuf.st_size > 0 && fsync (fd) != 0)
{
- format_error_message (err, tmp_name, _("Failed to write file '%s': fsync() failed: %s"));
+ set_file_error (err, tmp_name, _("Failed to write file '%s': fsync() failed: %s"));
close (fd);
g_unlink (tmp_name);