diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-03-28 10:19:05 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-03-28 10:19:05 +0800 |
commit | 505f6c235bf79453fdd500a62583ea82630eb604 (patch) | |
tree | 51a5660d2c732080a2a9aa81fca09b752692e832 /camel/camel-service.c | |
parent | 7b128390181cff1339199e570180fac485ba60cf (diff) | |
download | gsoc2013-evolution-505f6c235bf79453fdd500a62583ea82630eb604.tar.gz gsoc2013-evolution-505f6c235bf79453fdd500a62583ea82630eb604.tar.zst gsoc2013-evolution-505f6c235bf79453fdd500a62583ea82630eb604.zip |
Add the port (if user defined) to the path to fix bug #1996.
2001-03-27 Jeffrey Stedfast <fejj@ximian.com>
* camel-service.c (get_path): Add the port (if user defined) to
the path to fix bug #1996.
Danw: I'm iffy on the "fix" so I'd like you to comment.
svn path=/trunk/; revision=8986
Diffstat (limited to 'camel/camel-service.c')
-rw-r--r-- | camel/camel-service.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/camel/camel-service.c b/camel/camel-service.c index af9d659688..cbf0e5b681 100644 --- a/camel/camel-service.c +++ b/camel/camel-service.c @@ -342,6 +342,9 @@ get_path (CamelService *service) g_string_sprintfa (gpath, "/%s@%s", url->user ? url->user : "", url->host ? url->host : ""); + + if (url->port) + g_string_sprintfa (gpath, ":%d", url->port); } else { g_string_sprintfa (gpath, "/%s%s", url->user ? url->user : "", @@ -351,6 +354,9 @@ get_path (CamelService *service) g_string_sprintfa (gpath, "/%s%s", CAMEL_PROVIDER_NEEDS (prov, CAMEL_URL_PART_HOST) ? "" : "@", url->host ? url->host : ""); + + if (url->port) + g_string_sprintfa (gpath, ":%d", url->port); } if (CAMEL_PROVIDER_NEEDS (prov, CAMEL_URL_PART_PATH)) { g_string_sprintfa (gpath, "%s%s", |