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 | |
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
-rw-r--r-- | camel/ChangeLog | 5 | ||||
-rw-r--r-- | camel/providers/imap/camel-imap-folder.c | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 9bf96f3c48..a84762ab61 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,8 @@ +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 + 2000-07-14 Jeffrey Stedfast <fejj@helixcode.com> * string-utils.c (string_unquote): New convenience function 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; } |