talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit f8d35f8d40194ac94ee4e8503e8ff8a3480b6284
parent e377eee114ead1ecafd829a5937869e9bead2584
Author: Paul <paul@claws-mail.org>
Date:   Wed, 28 Aug 2013 08:00:29 +0100

revert part of last commit

bug 2989 remains fixed in as much as the segfault is prevented

Diffstat:
Msrc/file_checker.c | 20--------------------
1 file changed, 0 insertions(+), 20 deletions(-)

diff --git a/src/file_checker.c b/src/file_checker.c @@ -109,26 +109,6 @@ static gboolean verify_folderlist_xml() g_free(bak); } } - - if (is_file_exist(filename) && is_file_exist(bak) && folder_read_list() < 0) { - AlertValue aval; - gchar *msg; - - msg = g_strdup_printf - (_("The file %s is corrupted! " - "Do you want to use the backup file from %s?"), FOLDER_LIST,buf); - aval = alertpanel(_("Warning"), msg, GTK_STOCK_NO, GTK_STOCK_YES, NULL); - g_free(msg); - if (aval != G_ALERTALTERNATE) - return FALSE; - else { - if (copy_file(bak,filename,FALSE) < 0) { - alertpanel_warning(_("Could not copy %s to %s"),bak,filename); - return FALSE; - } - g_free(bak); - } - } return TRUE; }