Skip to content

Commit

Permalink
Respect quiet if no dbus-user (filter|none) is set
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty-snake committed Aug 5, 2021
1 parent 16aa6f1 commit 2c55943
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/firejail/dbus.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ static void dbus_check_bus_profile(char const *prefix, DbusPolicy *policy) {
}
}

if (num_matches > 0) {
if (num_matches > 0 && !arg_quiet) {
assert(first_match != NULL);
if (num_matches == 1) {
fprintf(stderr, "Ignoring \"%s\".\n", first_match);
Expand Down

0 comments on commit 2c55943

Please sign in to comment.