From 3f57d08b8740426ca333e49bbee76a290ac612b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Cr=C3=AAte?= Date: Tue, 1 Mar 2011 14:22:37 -0500 Subject: [PATCH] Don't put const before GSList, the g_slist* functions aren't const-marked --- src/auth-manager.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/auth-manager.c b/src/auth-manager.c index a942485..5c038cd4 100644 --- a/src/auth-manager.c +++ b/src/auth-manager.c @@ -294,7 +294,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, @@ -313,7 +313,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) { -- 1.7.4