diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-11-04 05:05:12 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-11-04 05:05:12 +0800 |
commit | 7e5a820d0d80e66e1a50b9388351b21781377b1e (patch) | |
tree | 40f2baa30a4fc0c62c7e16bb0cfa08a3c1c11973 | |
parent | e18070f31cfa6cd92181f96012242ac6793a7ca8 (diff) | |
download | gsoc2013-evolution-7e5a820d0d80e66e1a50b9388351b21781377b1e.tar gsoc2013-evolution-7e5a820d0d80e66e1a50b9388351b21781377b1e.tar.gz gsoc2013-evolution-7e5a820d0d80e66e1a50b9388351b21781377b1e.tar.bz2 gsoc2013-evolution-7e5a820d0d80e66e1a50b9388351b21781377b1e.tar.lz gsoc2013-evolution-7e5a820d0d80e66e1a50b9388351b21781377b1e.tar.xz gsoc2013-evolution-7e5a820d0d80e66e1a50b9388351b21781377b1e.tar.zst gsoc2013-evolution-7e5a820d0d80e66e1a50b9388351b21781377b1e.zip |
Don't show the passwd in the url string. (mail_tool_local_uri_to_folder):
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.
svn path=/trunk/; revision=6377
-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); |