From dff703a1ad37b8c77f404304462992e3baf91795 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Fri, 18 Jan 2013 11:57:01 +0100 Subject: Bump libsoup dependency to 2.40.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This removes workarounds for below libsoup bugs and makes trust-prompt for WebDAV based backends work better, by checking also server certificates.  * soup_message_get_https_status() now returns the certificate    and flags for unsuccessful https connections as well as    successful ones. [bug #690176]  * Fixed a deadlock when calling soup_session_abort() on a SoupSessionSync in some cases. [bug #691399] --- modules/cal-config-caldav/e-caldav-chooser.c | 41 ---------------------------- 1 file changed, 41 deletions(-) (limited to 'modules/cal-config-caldav') diff --git a/modules/cal-config-caldav/e-caldav-chooser.c b/modules/cal-config-caldav/e-caldav-chooser.c index f7de1129be..fefbc9829a 100644 --- a/modules/cal-config-caldav/e-caldav-chooser.c +++ b/modules/cal-config-caldav/e-caldav-chooser.c @@ -188,54 +188,13 @@ trust_prompt_sync (const ENamedParameters *parameters, { EUserPrompter *prompter; gint response; - gboolean asked = FALSE; g_return_val_if_fail (parameters != NULL, E_TRUST_PROMPT_RESPONSE_UNKNOWN); prompter = e_user_prompter_new (); g_return_val_if_fail (prompter != NULL, E_TRUST_PROMPT_RESPONSE_UNKNOWN); - /* before libsoup 2.41.3 the certificate was not set on failed requests, - thus do a simple prompt only in such case - */ - #ifdef SOUP_CHECK_VERSION - #if SOUP_CHECK_VERSION(2, 41, 3) - asked = TRUE; response = e_user_prompter_extension_prompt_sync (prompter, "ETrustPrompt::trust-prompt", parameters, NULL, cancellable, error); - #endif - #endif - - if (!asked) { - GList *button_captions = NULL; - const gchar *markup; - gchar *tmp = NULL; - - button_captions = g_list_append (button_captions, _("_Reject")); - button_captions = g_list_append (button_captions, _("Accept _Temporarily")); - button_captions = g_list_append (button_captions, _("_Accept Permanently")); - - markup = e_named_parameters_get (parameters, "markup"); - if (!markup) { - gchar *bhost; - - bhost = g_strconcat ("", e_named_parameters_get (parameters, "host"), "", NULL); - tmp = g_strdup_printf (_("SSL certificate for '%s' is not trusted. Do you wish to accept it?"), bhost); - g_free (bhost); - - markup = tmp; - } - - response = e_user_prompter_prompt_sync (prompter, "question", _("Certificate trust..."), - markup, NULL, TRUE, button_captions, cancellable, NULL); - - if (response == 1) - response = 2; - else if (response == 2) - response = 1; - - g_list_free (button_captions); - g_free (tmp); - } g_object_unref (prompter); -- cgit v1.2.3