diff options
Diffstat (limited to 'plugins/exchange-operations')
-rw-r--r-- | plugins/exchange-operations/ChangeLog | 7 | ||||
-rw-r--r-- | plugins/exchange-operations/exchange-folder-subscription.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog index 62325054d9..012dc779b9 100644 --- a/plugins/exchange-operations/ChangeLog +++ b/plugins/exchange-operations/ChangeLog @@ -1,5 +1,12 @@ 2008-02-18 Srinivasa Ragavan <sragavan@novell.com> + ** Fix for bug #294999 + + * exchange-folder-subscription.c: (subscribe_to_folder): Upstreamed + OpenSUSE patch. + +2008-02-18 Srinivasa Ragavan <sragavan@novell.com> + ** Patch from OpenSUSE. * exchange-delegates-user.c: Warnings. diff --git a/plugins/exchange-operations/exchange-folder-subscription.c b/plugins/exchange-operations/exchange-folder-subscription.c index 0de3f87a46..257b2d8ffc 100644 --- a/plugins/exchange-operations/exchange-folder-subscription.c +++ b/plugins/exchange-operations/exchange-folder-subscription.c @@ -282,7 +282,7 @@ subscribe_to_folder (GtkWidget *dialog, gint response, gpointer data) g_object_unref (folder); path = g_strdup_printf ("/%s", user_email_address); - exchange_account_open_folder (subscription_info->account, g_strdup_printf ("/%s", path)); + exchange_account_open_folder (subscription_info->account, path); g_free (path); g_free (user_email_address); gtk_widget_destroy (dialog); |