From 8f6ce0a5aa27c132e0d65a49e76d844d64bd72d9 Mon Sep 17 00:00:00 2001 From: Matt Hoosier Date: Thu, 9 Jan 2014 16:15:31 -0600 Subject: [PATCH] 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. --- bus/config-parser.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bus/config-parser.c b/bus/config-parser.c index 12a2d2e..a6a8e1c 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); -- 1.8.1.4