From 26b57efe43c991616186db5c499f729a900c6544 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Mon, 23 Jan 2012 10:20:48 +0000 Subject: [PATCH] dbus-daemon: fix forgotten counter increase while copying configured auth mechanisms Previously, only one auth mechanism was used. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=45106 Reviewed-by: Simon McVittie --- bus/bus.c | 1 + 1 file changed, 1 insertion(+) diff --git a/bus/bus.c b/bus/bus.c index 6b0dc08..04d25bc 100644 --- a/bus/bus.c +++ b/bus/bus.c @@ -419,6 +419,7 @@ process_config_first_time_only (BusContext *context, if (auth_mechanisms[i] == NULL) goto oom; link = _dbus_list_get_next_link (auth_mechanisms_list, link); + i += 1; } } else -- 2.7.4