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 2cb91964a..3ef9a1856 100644
--- a/src/firejail/profile.c
+++ b/src/firejail/profile.c
@@ -233,6 +233,10 @@ int profile_check_line(char *ptr, int lineno, const char *fname) {
233 arg_nosound = 1; 233 arg_nosound = 1;
234 return 0; 234 return 0;
235 } 235 }
236 else if (strcmp(ptr, "noautopulse") == 0) {
237 arg_noautopulse = 1;
238 return 0;
239 }
236 else if (strcmp(ptr, "notv") == 0) { 240 else if (strcmp(ptr, "notv") == 0) {
237 arg_notv = 1; 241 arg_notv = 1;
238 return 0; 242 return 0;