diff options
author | Milan Crha <mcrha@redhat.com> | 2010-12-08 22:59:01 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-12-08 22:59:01 +0800 |
commit | fb1874306786d0ef9527463bfed870dc07915084 (patch) | |
tree | 1024884f57becb26aeec57ef379a88cf29490059 | |
parent | 320c4ce807a9b24a3d9c4e02e408158d5cfbf125 (diff) | |
download | gsoc2013-evolution-fb1874306786d0ef9527463bfed870dc07915084.tar.gz gsoc2013-evolution-fb1874306786d0ef9527463bfed870dc07915084.tar.zst gsoc2013-evolution-fb1874306786d0ef9527463bfed870dc07915084.zip |
Bug #633332 - Preserve port number in WebDAV address book
-rw-r--r-- | plugins/webdav-account-setup/webdav-contacts-source.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/plugins/webdav-account-setup/webdav-contacts-source.c b/plugins/webdav-account-setup/webdav-contacts-source.c index 6ce62e4bdd..870fa46b13 100644 --- a/plugins/webdav-account-setup/webdav-contacts-source.c +++ b/plugins/webdav-account-setup/webdav-contacts-source.c @@ -123,9 +123,17 @@ set_ui_from_source (ui_data *data) gtk_toggle_button_set_active (data->avoid_ifmatch_toggle, avoid_ifmatch); /* it's really a http or https protocol */ - if (suri) + if (suri) { + gint port; + + port = soup_uri_get_port (suri); + soup_uri_set_scheme (suri, use_ssl ? "https" : "http"); + if (port > 0 && port != soup_uri_get_port (suri)) + soup_uri_set_port (suri, port); + } + /* remove user/username and set user field */ if (suri && suri->user != NULL) { gtk_entry_set_text (data->username_entry, suri->user); |