mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 08:24:42 +01:00
parser: fix conflicting mnt flag values message to have a space
The conflicting flags value message was hard to read conflicting flag value = lazytimenolazytime change it to conflicting flag values = lazytime, nolazytime Signed-off-by: John Johansen <john.johansen@canonical.com>
This commit is contained in:
parent
b51602233d
commit
89bc617d0d
1 changed files with 2 additions and 3 deletions
|
@ -383,9 +383,8 @@ static bool conflicting_flags(unsigned int flags, unsigned int inv)
|
|||
for (int i = 0; i < 31; i++) {
|
||||
unsigned int mask = 1 << i;
|
||||
if ((flags & inv) & mask) {
|
||||
cerr << "conflicting flag value = ";
|
||||
cerr << make_pair(flags, inv);
|
||||
cerr << "\n";
|
||||
cerr << "conflicting flag values = "
|
||||
<< flags << ", " << inv << "\n";
|
||||
}
|
||||
}
|
||||
return true;
|
||||
|
|
Loading…
Add table
Reference in a new issue