From 7e5a820d0d80e66e1a50b9388351b21781377b1e Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Fri, 3 Nov 2000 21:05:12 +0000 Subject: Don't show the passwd in the url string. (mail_tool_local_uri_to_folder): 2000-11-03 Jeffrey Stedfast * 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. svn path=/trunk/; revision=6377 --- mail/mail-local.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'mail/mail-local.c') 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); -- cgit v1.2.3