diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2007-07-13 08:28:07 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2007-07-13 08:28:07 +0000 |
commit | 3d9fe9eaaa689f8b65613220ae3478442e277cf3 (patch) | |
tree | ed1838ef7dcaeb84db1efd0544d905c92b9cdccf /libsylph | |
parent | 174df0c34591a06bef42c9a01b72361a8c8402af (diff) |
prefs_common_junk_folder_rename_path(): fixed.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1865 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph')
-rw-r--r-- | libsylph/prefs_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsylph/prefs_common.c b/libsylph/prefs_common.c index 86da293a..df545d3f 100644 --- a/libsylph/prefs_common.c +++ b/libsylph/prefs_common.c @@ -554,7 +554,7 @@ void prefs_common_junk_folder_rename_path(const gchar *old_path, if (!prefs_common.junk_folder) return; - len = strlen(prefs_common.junk_folder); + len = strlen(old_path); if (!strncmp(old_path, prefs_common.junk_folder, len)) { base = prefs_common.junk_folder + len; |