summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2003-12-24 13:27:35 +0000
committerRodrigo Moya <rodrigo@src.gnome.org>2003-12-24 13:27:35 +0000
commit5be0fc6bfa52bd70cdb1cd94c102fa0e94c09600 (patch)
tree8f64d4c8b519188e9776eb0c3c848faf3fc33000
parent8aa02f75c9d7b1a680f73cf9af79e24d1b69618b (diff)
downloadevolution-data-server-5be0fc6bfa52bd70cdb1cd94c102fa0e94c09600.tar.gz
fixed warning.
2003-12-24 Rodrigo Moya <rodrigo@ximian.com> * backends/groupwise/e-gw-connection.c (e_gw_connection_get_items): fixed warning.
-rw-r--r--calendar/ChangeLog5
-rw-r--r--calendar/backends/groupwise/e-gw-connection.c2
-rw-r--r--servers/groupwise/e-gw-connection.c2
3 files changed, 7 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index cf4b160cb..97c399e8e 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,5 +1,10 @@
2003-12-24 Rodrigo Moya <rodrigo@ximian.com>
+ * backends/groupwise/e-gw-connection.c (e_gw_connection_get_items):
+ fixed warning.
+
+2003-12-24 Rodrigo Moya <rodrigo@ximian.com>
+
* backends/groupwise/e-gw-message.[ch] (e_gw_message_new_with_header):
added 'session_id' argument, to add the <Header> SOAP part if not NULL.
diff --git a/calendar/backends/groupwise/e-gw-connection.c b/calendar/backends/groupwise/e-gw-connection.c
index cd58849ed..46ec7bc7a 100644
--- a/calendar/backends/groupwise/e-gw-connection.c
+++ b/calendar/backends/groupwise/e-gw-connection.c
@@ -411,7 +411,7 @@ e_gw_connection_get_items (EGwConnection *cnc, GSList **list)
}
/* FIXME: iterate through the response and populate the list */
- *l = (GList *) soup_soap_response_get_parameters (response);
+ l = (GList *) soup_soap_response_get_parameters (response);
/* free memory */
g_object_unref (response);
diff --git a/servers/groupwise/e-gw-connection.c b/servers/groupwise/e-gw-connection.c
index cd58849ed..46ec7bc7a 100644
--- a/servers/groupwise/e-gw-connection.c
+++ b/servers/groupwise/e-gw-connection.c
@@ -411,7 +411,7 @@ e_gw_connection_get_items (EGwConnection *cnc, GSList **list)
}
/* FIXME: iterate through the response and populate the list */
- *l = (GList *) soup_soap_response_get_parameters (response);
+ l = (GList *) soup_soap_response_get_parameters (response);
/* free memory */
g_object_unref (response);