summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.co.uk>2011-03-01 14:22:37 -0500
committerWill Thompson <will.thompson@collabora.co.uk>2012-11-21 17:59:57 +0000
commit28ddadbd3a3ce84bf3619d83dee005d320f3a915 (patch)
tree1573911416a14a33f8837527bfc90cecb02e01fa /src
parent1d6c3044f13488e5457a31be631dec8e12068b6b (diff)
Don't put const before GSList, the g_slist* functions aren't const-marked
Diffstat (limited to 'src')
-rw-r--r--src/auth-manager.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/auth-manager.c b/src/auth-manager.c
index fd90bf517..fac0f7b8c 100644
--- a/src/auth-manager.c
+++ b/src/auth-manager.c
@@ -293,7 +293,7 @@ finally:
static void
gabble_auth_manager_start_auth_async (WockyAuthRegistry *registry,
- const GSList *mechanisms,
+ GSList *mechanisms,
gboolean allow_plain,
gboolean is_secure_channel,
const gchar *username,
@@ -312,7 +312,7 @@ gabble_auth_manager_start_auth_async (WockyAuthRegistry *registry,
if (password == NULL || username == NULL)
{
GPtrArray *mech_array = g_ptr_array_new ();
- const GSList *iter;
+ GSList *iter;
for (iter = mechanisms; iter != NULL; iter = iter->next)
{