aboutsummaryrefslogtreecommitdiffstats
path: root/src/firejail/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/firejail/main.c')
-rw-r--r--src/firejail/main.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/firejail/main.c b/src/firejail/main.c
index 3718c82ff..31857ee57 100644
--- a/src/firejail/main.c
+++ b/src/firejail/main.c
@@ -113,6 +113,7 @@ int arg_disable_mnt = 0; // disable /mnt and /media
113int arg_noprofile = 0; // use default.profile if none other found/specified 113int arg_noprofile = 0; // use default.profile if none other found/specified
114int arg_memory_deny_write_execute = 0; // block writable and executable memory 114int arg_memory_deny_write_execute = 0; // block writable and executable memory
115int arg_notv = 0; // --notv 115int arg_notv = 0; // --notv
116int arg_nodvd = 0; // --nodvd
116int login_shell = 0; 117int login_shell = 0;
117 118
118 119
@@ -1690,6 +1691,8 @@ int main(int argc, char **argv) {
1690 arg_no3d = 1; 1691 arg_no3d = 1;
1691 else if (strcmp(argv[i], "--notv") == 0) 1692 else if (strcmp(argv[i], "--notv") == 0)
1692 arg_notv = 1; 1693 arg_notv = 1;
1694 else if (strcmp(argv[i], "--nodvd") == 0)
1695 arg_nodvd = 1;
1693 1696
1694 //************************************* 1697 //*************************************
1695 // network 1698 // network