aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-url.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-07-28 07:49:47 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-07-28 07:49:47 +0800
commit8a7e082b56eba1d4541c1ca696a652ad9c1bb3b3 (patch)
tree3dc2df329242cfe9081ea347ea6390db0aa6e20a /camel/camel-url.c
parent5c7766bfbdd344c1e2820329b0cdf455b966a9da (diff)
downloadgsoc2013-evolution-8a7e082b56eba1d4541c1ca696a652ad9c1bb3b3.tar
gsoc2013-evolution-8a7e082b56eba1d4541c1ca696a652ad9c1bb3b3.tar.gz
gsoc2013-evolution-8a7e082b56eba1d4541c1ca696a652ad9c1bb3b3.tar.bz2
gsoc2013-evolution-8a7e082b56eba1d4541c1ca696a652ad9c1bb3b3.tar.lz
gsoc2013-evolution-8a7e082b56eba1d4541c1ca696a652ad9c1bb3b3.tar.xz
gsoc2013-evolution-8a7e082b56eba1d4541c1ca696a652ad9c1bb3b3.tar.zst
gsoc2013-evolution-8a7e082b56eba1d4541c1ca696a652ad9c1bb3b3.zip
If the path doesn't begin with a / and there is a host, prepend a / to the
2000-07-27 Jeffrey Stedfast <fejj@helixcode.com> * camel-url.c (camel_url_to_string): If the path doesn't begin with a / and there is a host, prepend a / to the path. svn path=/trunk/; revision=4403
Diffstat (limited to 'camel/camel-url.c')
-rw-r--r--camel/camel-url.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/camel/camel-url.c b/camel/camel-url.c
index bf578a41a5..60385008c4 100644
--- a/camel/camel-url.c
+++ b/camel/camel-url.c
@@ -7,6 +7,7 @@
* Bertrand Guiheneuf <bertrand@helixcode.com>
* Dan Winship <danw@helixcode.com>
* Tiago Antào <tiagoantao@bigfoot.com>
+ * Jeffrey Stedfast <fejj@helixcode.com>
*
* Copyright 1999, 2000 Helix Code, Inc. (http://www.helixcode.com)
*
@@ -206,7 +207,7 @@ camel_url_to_string (CamelURL *url, gboolean show_passwd)
host ? host : "",
*port ? ":" : "",
port,
- path && *path != '/' ? "/" : "",
+ path && host && *path != '/' ? "/" : "",
path ? path : "");
g_free (user);
g_free (authmech);