From: Pavel Strashkin Date: Mon, 23 Jan 2012 10:20:48 +0000 (+0000) Subject: dbus-daemon: fix forgotten counter increase while copying configured auth mechanisms X-Git-Tag: dbus-1.4.18~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc124e6ab06af68beaa2870e78a2dbce62051d39;p=thirdparty%2Fdbus.git 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 --- diff --git a/bus/bus.c b/bus/bus.c index 6b0dc088e..04d25bcb0 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