From 0f0fba1e81c46a4706b93a8efa4e19cf81d51592 Mon Sep 17 00:00:00 2001 From: Not Zed Date: Tue, 1 Jun 2004 11:30:49 +0000 Subject: set the right path on the url. 2004-06-01 Not Zed * em-folder-selector.c (em_folder_selector_get_selected_uri): set the right path on the url. svn path=/trunk/; revision=26141 --- mail/ChangeLog | 3 +++ mail/em-folder-selector.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index 77c1b6476b..4501501bce 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,8 @@ 2004-06-01 Not Zed + * em-folder-selector.c (em_folder_selector_get_selected_uri): set + the right path on the url. + * mail-signature-editor.c (load_signature): ugh, unlike camel exceptions, you can't pass NULL to CORBA calls. (mail_signature_editor): ditto. See bug #58815. diff --git a/mail/em-folder-selector.c b/mail/em-folder-selector.c index 38ff9ed391..ad20059fd4 100644 --- a/mail/em-folder-selector.c +++ b/mail/em-folder-selector.c @@ -360,7 +360,7 @@ em_folder_selector_get_selected_uri (EMFolderSelector *emfs) char *path; path = g_strdup_printf("%s/%s", (url->path == NULL || strcmp(url->path, "/") == 0) ? "":url->path, name); - camel_url_set_path(url, newpath); + camel_url_set_path(url, path); if (path[0] == '/') { newpath = g_strdup(path+1); g_free(path); -- cgit