diff options
author | JP Rosevear <jpr@ximian.com> | 2004-01-23 00:25:23 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-01-23 00:25:23 +0800 |
commit | 4f0fbfb4a21040eebd29daafc225529d997308b4 (patch) | |
tree | f418011e2e4e36c1a386296d466d6070ec2b3f7b | |
parent | 03bacd4b8c2c425addbb08d69cfc94f7cc10a8ea (diff) | |
download | gsoc2013-evolution-4f0fbfb4a21040eebd29daafc225529d997308b4.tar gsoc2013-evolution-4f0fbfb4a21040eebd29daafc225529d997308b4.tar.gz gsoc2013-evolution-4f0fbfb4a21040eebd29daafc225529d997308b4.tar.bz2 gsoc2013-evolution-4f0fbfb4a21040eebd29daafc225529d997308b4.tar.lz gsoc2013-evolution-4f0fbfb4a21040eebd29daafc225529d997308b4.tar.xz gsoc2013-evolution-4f0fbfb4a21040eebd29daafc225529d997308b4.tar.zst gsoc2013-evolution-4f0fbfb4a21040eebd29daafc225529d997308b4.zip |
remove useless e_mkdir_hier call.
2004-01-22 JP Rosevear <jpr@ximian.com>
* gui/migration.c (process_old_dir): remove useless e_mkdir_hier
call.
Fixes #53065
svn path=/trunk/; revision=24366
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/migration.c | 7 |
2 files changed, 7 insertions, 7 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index d77a0f4154..73c02abc9e 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -6,6 +6,13 @@ 2004-01-22 JP Rosevear <jpr@ximian.com> + * gui/migration.c (process_old_dir): remove useless e_mkdir_hier + call. + + Fixes #53065 + +2004-01-22 JP Rosevear <jpr@ximian.com> + * gui/e-tasks.c (e_tasks_setup_view_menus): Remove debugging statement diff --git a/calendar/gui/migration.c b/calendar/gui/migration.c index 599fea59b6..c91f356261 100644 --- a/calendar/gui/migration.c +++ b/calendar/gui/migration.c @@ -129,13 +129,6 @@ process_old_dir (ESourceGroup *source_group, const char *path, if (!from) return FALSE; - s = g_build_filename (e_source_group_peek_base_uri (source_group), base_uri, - filename, NULL); - if (e_mkdir_hier (s, 0700) != 0) { - gnome_vfs_uri_unref (from); - g_free (s); - return FALSE; - } to = gnome_vfs_uri_new (s); g_free (s); if (!to) { |