mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 08:24:42 +01:00
parser: fix dbus.cc issue when building with gcc 5
Merge from trunk revision 2868. This should fix a gcc 5 build failure (untested) with os << .. << os This build failure was discovered by doko's archive rebuild: http://people.ubuntuwire.org/~wgrant/rebuild-ftbfs-test/test-rebuild-20150202-gcc5-vivid.html Acked-by: Steve Beattie <steve@nxnw.org>
This commit is contained in:
parent
9ed8789918
commit
bbaaa00249
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ ostream &dbus_rule::dump(ostream &os)
|
|||
if (interface)
|
||||
os << " interface=\"" << interface << "\"";
|
||||
if (member)
|
||||
os << " member=\"" << member << os << "\"";
|
||||
os << " member=\"" << member << "\"";
|
||||
|
||||
if (!(mode & AA_DBUS_BIND) && (peer_label || name)) {
|
||||
os << " peer=( ";
|
||||
|
|
Loading…
Add table
Reference in a new issue