aboutsummaryrefslogtreecommitdiffstats
path: root/src/firejail/profile.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/firejail/profile.c')
-rw-r--r--src/firejail/profile.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/firejail/profile.c b/src/firejail/profile.c
index 8771a7fa8..28df9f03e 100644
--- a/src/firejail/profile.c
+++ b/src/firejail/profile.c
@@ -116,6 +116,10 @@ int profile_check_line(char *ptr, int lineno, const char *fname) {
116 } 116 }
117 return 0; 117 return 0;
118 } 118 }
119 else if (strcmp(ptr, "ipc-namespace") == 0) {
120 arg_ipc = 1;
121 return 0;
122 }
119 // seccomp, caps, private, user namespace 123 // seccomp, caps, private, user namespace
120 else if (strcmp(ptr, "noroot") == 0) { 124 else if (strcmp(ptr, "noroot") == 0) {
121#if HAVE_USERNS 125#if HAVE_USERNS