diff options
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/mail-local.c | 12 |
2 files changed, 13 insertions, 6 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index ab8c48f2f1..249344a32d 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,12 @@ 2000-11-03 Jeffrey Stedfast <fejj@helixcode.com> + * mail-local.c (mail_local_map_uri): Don't show the passwd in the + url string. + (mail_tool_local_uri_to_folder): Same. + (do_reconfigure_folder): Same. + +2000-11-03 Jeffrey Stedfast <fejj@helixcode.com> + * Makefile.am: Added new header files. * component-factory.c (owner_set_cb): diff --git a/mail/mail-local.c b/mail/mail-local.c index e2d5a8cea1..82f0ef3e18 100644 --- a/mail/mail-local.c +++ b/mail/mail-local.c @@ -179,7 +179,7 @@ mail_local_map_uri(const char *uri, int *index) /* change file: to format: */ camel_url_set_protocol(url, meta->format); - storename = camel_url_to_string(url, TRUE); + storename = camel_url_to_string (url, FALSE); camel_url_free(url); return storename; @@ -213,7 +213,7 @@ mail_tool_local_uri_to_folder(const char *uri, CamelException *ex) /* change file: to format: */ camel_url_set_protocol(url, meta->format); - storename = camel_url_to_string(url, TRUE); + storename = camel_url_to_string (url, FALSE); printf("store name is %s\n", storename); flags = 0; @@ -333,10 +333,10 @@ do_reconfigure_folder(gpointer in_data, gpointer op_data, CamelException *ex) input->fb->folder = NULL; } - camel_url_set_protocol(url, meta->format); - fromurl = camel_url_to_string(url, TRUE); - camel_url_set_protocol(url, input->newtype); - tourl = camel_url_to_string(url, TRUE); + camel_url_set_protocol (url, meta->format); + fromurl = camel_url_to_string (url, FALSE); + camel_url_set_protocol (url, input->newtype); + tourl = camel_url_to_string (url, FALSE); printf("opening stores %s and %s\n", fromurl, tourl); |