summaryrefslogtreecommitdiff
path: root/bus/bus.c
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2012-01-23 10:20:48 +0000
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2012-01-23 10:20:48 +0000
commit26b57efe43c991616186db5c499f729a900c6544 (patch)
treedab24b37ca999e8590815dee2ebfb0484df60285 /bus/bus.c
parent99bd4a517aa34d973829b1fde530090fd4e4e292 (diff)
downloaddbus-26b57efe43c991616186db5c499f729a900c6544.tar.gz
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 <simon.mcvittie@collabora.co.uk>
Diffstat (limited to 'bus/bus.c')
-rw-r--r--bus/bus.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/bus/bus.c b/bus/bus.c
index 6b0dc088..04d25bcb 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