diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-01-21 03:59:09 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-01-21 03:59:09 +0800 |
commit | eff4fec134c39fa372b28498885872d67f7d3ce2 (patch) | |
tree | 243e5ecfd4ca3363ee7a3d9aa9d827a7dc31b1fc /mail | |
parent | 19b195d9e8daa7a9ea36abb8388ffdb6eb578829 (diff) | |
download | gsoc2013-evolution-eff4fec134c39fa372b28498885872d67f7d3ce2.tar.gz gsoc2013-evolution-eff4fec134c39fa372b28498885872d67f7d3ce2.tar.zst gsoc2013-evolution-eff4fec134c39fa372b28498885872d67f7d3ce2.zip |
fixed a type-o that omehow made it in between building and committing
svn path=/trunk/; revision=24331
Diffstat (limited to 'mail')
-rw-r--r-- | mail/em-migrate.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mail/em-migrate.c b/mail/em-migrate.c index 91758ee4ae..b925059bc9 100644 --- a/mail/em-migrate.c +++ b/mail/em-migrate.c @@ -1351,7 +1351,7 @@ cp_r (const char *src, const char *dest) closedir (dir); g_string_free (destpath, TRUE); - g_string_free (srcfpath, TRUE); + g_string_free (srcpath, TRUE); return 0; } @@ -1417,7 +1417,6 @@ em_migrate_dir (EMMigrateSession *session, const char *dirname, const char *full if (!is_mail_folder (path)) { g_free (path); - goto try_subdirs; } |