[evolution-data-server] Bug #611539 - EProxy doesn't use authentication for HTTPS
- From: Milan Crha <mcrha src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution-data-server] Bug #611539 - EProxy doesn't use authentication for HTTPS
- Date: Fri, 3 Sep 2010 07:49:48 +0000 (UTC)
commit 90dcdd392015a16729257a4089cbe2c7ae8f8f70
Author: Milan Crha <mcrha redhat com>
Date: Fri Sep 3 09:48:45 2010 +0200
Bug #611539 - EProxy doesn't use authentication for HTTPS
libedataserver/e-proxy.c | 16 +++++++++++++---
1 files changed, 13 insertions(+), 3 deletions(-)
---
diff --git a/libedataserver/e-proxy.c b/libedataserver/e-proxy.c
index ed85ea2..15b4575 100644
--- a/libedataserver/e-proxy.c
+++ b/libedataserver/e-proxy.c
@@ -622,23 +622,33 @@ ep_set_proxy (GConfClient *client,
}
if (gconf_client_get_bool (client, RIGHT_KEY (HTTP_USE_AUTH), NULL)) {
- gchar *proxy_user, *proxy_pw, *tmp = NULL;
+ gchar *proxy_user, *proxy_pw, *tmp = NULL, *tmps = NULL;
proxy_user = gconf_client_get_string (client, RIGHT_KEY (HTTP_AUTH_USER), NULL);
proxy_pw = gconf_client_get_string (client, RIGHT_KEY (HTTP_AUTH_PWD), NULL);
- if (proxy_user && *proxy_user && proxy_pw && *proxy_pw) {
+ if (uri_http && proxy_user && *proxy_user && proxy_pw && *proxy_pw) {
tmp = uri_http;
uri_http = g_strdup_printf ("http://%s:%s %s", proxy_user, proxy_pw, tmp + strlen ("http://"));
- } else if (proxy_user && *proxy_user) {
+ } else if (uri_http && proxy_user && *proxy_user) {
/* proxy without password, just try it */
tmp = uri_http;
uri_http = g_strdup_printf ("http://%s %s", proxy_user, tmp + strlen ("http://"));
}
+ if (uri_https && proxy_user && *proxy_user && proxy_pw && *proxy_pw) {
+ tmps = uri_https;
+ uri_https = g_strdup_printf ("https://%s:%s %s", proxy_user, proxy_pw, tmps + strlen ("https://"));
+ } else if (uri_https && proxy_user && *proxy_user) {
+ /* proxy without password, just try it */
+ tmps = uri_https;
+ uri_https = g_strdup_printf ("https://%s %s", proxy_user, tmps + strlen ("https://"));
+ }
+
g_free (proxy_user);
g_free (proxy_pw);
g_free (tmp);
+ g_free (tmps);
}
changed = ep_change_uri (&priv->uri_http, uri_http) || changed;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]