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 2d49b60c0..d188f97a8 100644
--- a/src/firejail/profile.c
+++ b/src/firejail/profile.c
@@ -215,6 +215,10 @@ int profile_check_line(char *ptr, int lineno, const char *fname) {
215 arg_no3d = 1; 215 arg_no3d = 1;
216 return 0; 216 return 0;
217 } 217 }
218 else if (strcmp(ptr, "allow-private-blacklist") == 0) {
219 arg_allow_private_blacklist = 1;
220 return 0;
221 }
218 else if (strcmp(ptr, "netfilter") == 0) { 222 else if (strcmp(ptr, "netfilter") == 0) {
219#ifdef HAVE_NETWORK 223#ifdef HAVE_NETWORK
220 if (checkcfg(CFG_NETWORK)) 224 if (checkcfg(CFG_NETWORK))