summaryrefslogtreecommitdiffstats
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 7b59cd48c..8c393cab5 100644
--- a/src/firejail/profile.c
+++ b/src/firejail/profile.c
@@ -257,6 +257,10 @@ int profile_check_line(char *ptr, int lineno, const char *fname) {
257 arg_nodbus = 1; 257 arg_nodbus = 1;
258 return 0; 258 return 0;
259 } 259 }
260 else if (strcmp(ptr, "nousb") == 0) {
261 arg_nousb = 1;
262 return 0;
263 }
260 else if (strcmp(ptr, "netfilter") == 0) { 264 else if (strcmp(ptr, "netfilter") == 0) {
261#ifdef HAVE_NETWORK 265#ifdef HAVE_NETWORK
262 if (checkcfg(CFG_NETWORK)) 266 if (checkcfg(CFG_NETWORK))