From fc3bf2f30472aa87b0e8eedb6aa3b0a78043cd8b Mon Sep 17 00:00:00 2001 From: Matt Hoosier Date: Thu, 9 Jan 2014 16:15:31 -0600 Subject: Don't forget allow_anonymous when merging configs The algorithm to collapse a subsidiary config file's data into the master data structure forgot to examine this flag. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=73475 Reviewed-by: Chengwei Yang Reviewed-by: Simon McVittie --- bus/config-parser.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bus') diff --git a/bus/config-parser.c b/bus/config-parser.c index 12a2d2e7..a6a8e1cf 100644 --- a/bus/config-parser.c +++ b/bus/config-parser.c @@ -318,6 +318,9 @@ merge_included (BusConfigParser *parser, if (included->keep_umask) parser->keep_umask = TRUE; + if (included->allow_anonymous) + parser->allow_anonymous = TRUE; + if (included->pidfile != NULL) { dbus_free (parser->pidfile); -- cgit v1.2.3