aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-url.c
diff options
context:
space:
mode:
Diffstat (limited to 'e-util/e-url.c')
-rw-r--r--e-util/e-url.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/e-util/e-url.c b/e-util/e-url.c
index 34f28ab2f7..8054ba897a 100644
--- a/e-util/e-url.c
+++ b/e-util/e-url.c
@@ -316,7 +316,7 @@ e_uri_to_string (EUri *uri, gboolean show_password)
uri->passwd && show_password ? ":" : "",
uri->passwd && show_password ? uri->passwd : "",
uri->user ? "@" : "",
- uri->host,
+ uri->host ? uri->host : "",
uri->port,
uri->path ? uri->path : "",
uri->query ? "?" : "",
@@ -331,7 +331,7 @@ e_uri_to_string (EUri *uri, gboolean show_password)
uri->passwd && show_password ? ":" : "",
uri->passwd && show_password ? uri->passwd : "",
uri->user ? "@" : "",
- uri->host,
+ uri->host ? uri->host : "",
uri->path ? uri->path : "",
uri->query ? "?" : "",
uri->query ? uri->query : "");