From 60dc92eb4497e5d0c5f600bae9c382da693d9012 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Wed, 8 Dec 2010 15:59:01 +0100 Subject: Bug #633332 - Preserve port number in WebDAV address book --- plugins/webdav-account-setup/webdav-contacts-source.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'plugins/webdav-account-setup') 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); -- cgit v1.2.3