diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-07-15 12:30:16 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-07-15 12:30:16 +0800 |
commit | 104102d7b7649d120229baa4211b45ac89deda29 (patch) | |
tree | 6fb25a9cb4effa6ea34dad6855b04f6953cf4f95 /camel/providers | |
parent | 210cb985b17c9c27440e1f543f7609a2bcb39cff (diff) | |
download | gsoc2013-evolution-104102d7b7649d120229baa4211b45ac89deda29.tar gsoc2013-evolution-104102d7b7649d120229baa4211b45ac89deda29.tar.gz gsoc2013-evolution-104102d7b7649d120229baa4211b45ac89deda29.tar.bz2 gsoc2013-evolution-104102d7b7649d120229baa4211b45ac89deda29.tar.lz gsoc2013-evolution-104102d7b7649d120229baa4211b45ac89deda29.tar.xz gsoc2013-evolution-104102d7b7649d120229baa4211b45ac89deda29.tar.zst gsoc2013-evolution-104102d7b7649d120229baa4211b45ac89deda29.zip |
One last fix to get rid of hard-coded "/" directory separators
2000-07-15 Jeffrey Stedfast <fejj@helixcode.com>
* providers/imap/camel-imap-folder.c (camel_imap_folder_new):
One last fix to get rid of hard-coded "/" directory separators
svn path=/trunk/; revision=4175
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/imap/camel-imap-folder.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/camel/providers/imap/camel-imap-folder.c b/camel/providers/imap/camel-imap-folder.c index 6fce61717f..4b4c8a8caa 100644 --- a/camel/providers/imap/camel-imap-folder.c +++ b/camel/providers/imap/camel-imap-folder.c @@ -180,8 +180,11 @@ CamelFolder * camel_imap_folder_new (CamelStore *parent, char *folder_name, CamelException *ex) { CamelFolder *folder = CAMEL_FOLDER (gtk_object_new (camel_imap_folder_get_type (), NULL)); + char *dir_sep; + + dir_sep = CAMEL_IMAP_STORE (parent)->dir_sep; - CF_CLASS (folder)->init (folder, parent, NULL, folder_name, "/", FALSE, ex); + CF_CLASS (folder)->init (folder, parent, NULL, folder_name, dir_sep, FALSE, ex); return folder; } |