diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/subscribe-dialog.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 0d4b3bf03c..6e5327b817 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2000-12-27 Dan Winship <danw@helixcode.com> + + * subscribe-dialog.c (setup_subscribe_folder): Use info->name, not + input->full_name. Fixes #1029 in bugzilla.helixcode.com. + 2000-12-24 Christopher James Lahey <clahey@helixcode.com> * message-list.c (filter_date): Changed this to format times in 12 diff --git a/mail/subscribe-dialog.c b/mail/subscribe-dialog.c index 0d40eff6de..becb6f5bc6 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->full_name); + data->name = g_strdup (input->info->name); data->url = g_strdup (input->info->url); camel_object_ref (CAMEL_OBJECT (input->store)); |