summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchen@src.gnome.org>2006-09-18 08:55:27 +0000
committerChenthill Palanisamy <pchen@src.gnome.org>2006-09-18 08:55:27 +0000
commitaab03dfbda54aa6cdd6f2ab3ba991572c648ea41 (patch)
tree0146936326347c28b92bf9e602241836a38682f8
parent3fef25ec2c81402883d93ed88859dfce4c972f55 (diff)
downloadevolution-data-server-aab03dfbda54aa6cdd6f2ab3ba991572c648ea41.tar.gz
Use the right e-source property (use_ssl).
-rw-r--r--calendar/backends/http/e-cal-backend-http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/backends/http/e-cal-backend-http.c b/calendar/backends/http/e-cal-backend-http.c
index cf3ad4de1..07a803ab5 100644
--- a/calendar/backends/http/e-cal-backend-http.c
+++ b/calendar/backends/http/e-cal-backend-http.c
@@ -438,7 +438,7 @@ begin_retrieval_cb (ECalBackendHttp *cbhttp)
if (priv->uri == NULL) {
ESource *source = e_cal_backend_get_source (E_CAL_BACKEND (cbhttp));
- const char *secure_prop = e_source_get_property (source, "secure");
+ const char *secure_prop = e_source_get_property (source, "use_ssl");
priv->uri = webcal_to_http_method (e_cal_backend_get_uri (E_CAL_BACKEND (cbhttp)),
(secure_prop && g_str_equal(secure_prop, "1")));