aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/firejail/util.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/firejail/util.c b/src/firejail/util.c
index 79ebfa1dd..109105630 100644
--- a/src/firejail/util.c
+++ b/src/firejail/util.c
@@ -125,7 +125,8 @@ int check_can_drop_all_groups() {
125 * and #4603. 125 * and #4603.
126 */ 126 */
127 if (access("/run/systemd/seats/", F_OK) != 0) { 127 if (access("/run/systemd/seats/", F_OK) != 0) {
128 fwarning("logind not detected, nogroups command ignored\n"); 128 // TODO: wrc causes this to be printed even with (e)logind (see #4930)
129 //fwarning("logind not detected, nogroups command ignored\n");
129 can_drop_all_groups = 0; 130 can_drop_all_groups = 0;
130 goto out; 131 goto out;
131 } 132 }