aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2017-01-28 09:40:07 -0500
committerLibravatar netblue30 <netblue30@yahoo.com>2017-01-28 09:40:07 -0500
commitc83cf990e0defae1aab570bfd46688c1e9b3eafb (patch)
tree835d5380eecaf505b8cb8a53107c97e17459a5ea /src
parentprofile fixes (diff)
downloadfirejail-c83cf990e0defae1aab570bfd46688c1e9b3eafb.tar.gz
firejail-c83cf990e0defae1aab570bfd46688c1e9b3eafb.tar.zst
firejail-c83cf990e0defae1aab570bfd46688c1e9b3eafb.zip
support allow-private-blacklist in profile files
Diffstat (limited to 'src')
-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))