aboutsummaryrefslogtreecommitdiffstats
path: root/mail/subscribe-dialog.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-12-05 05:55:31 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-12-05 05:55:31 +0800
commitfc99cb4acc8ceb442d65171671f1100aff549786 (patch)
tree802aaa7c4265d19b2595640bbb964028af3edfac /mail/subscribe-dialog.c
parent6e8a9dfec1325b2fb7b28a9b29b952bda6f7f533 (diff)
downloadgsoc2013-evolution-fc99cb4acc8ceb442d65171671f1100aff549786.tar
gsoc2013-evolution-fc99cb4acc8ceb442d65171671f1100aff549786.tar.gz
gsoc2013-evolution-fc99cb4acc8ceb442d65171671f1100aff549786.tar.bz2
gsoc2013-evolution-fc99cb4acc8ceb442d65171671f1100aff549786.tar.lz
gsoc2013-evolution-fc99cb4acc8ceb442d65171671f1100aff549786.tar.xz
gsoc2013-evolution-fc99cb4acc8ceb442d65171671f1100aff549786.tar.zst
gsoc2013-evolution-fc99cb4acc8ceb442d65171671f1100aff549786.zip
Use info->full_name rather than info->name so that we get the namespace
2000-12-04 Jeffrey Stedfast <fejj@helixcode.com> * subscribe-dialog.c (setup_subscribe_folder): Use info->full_name rather than info->name so that we get the namespace part of the folder path as well. svn path=/trunk/; revision=6783
Diffstat (limited to 'mail/subscribe-dialog.c')
-rw-r--r--mail/subscribe-dialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/subscribe-dialog.c b/mail/subscribe-dialog.c
index a8ac2a99d3..6f4dde25c0 100644
--- a/mail/subscribe-dialog.c
+++ b/mail/subscribe-dialog.c
@@ -302,7 +302,7 @@ setup_subscribe_folder (gpointer in_data, gpointer op_data, CamelException *ex)
subscribe_folder_data_t *data = (subscribe_folder_data_t *) op_data;
data->path = storage_tree_path (input->info);
- data->name = g_strdup (input->info->name);
+ data->name = g_strdup (input->info->full_name);
data->url = g_strdup (input->info->url);
camel_object_ref (CAMEL_OBJECT (input->store));