aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2015-08-27 15:00:23 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2015-08-27 15:00:23 -0400
commitce8729c36002ea513187be16352e48597cc479ff (patch)
tree00f5f73849ea725e4cdf80dee9a6e6f87e3c9d2f
parentcleanup (diff)
downloadfirejail-ce8729c36002ea513187be16352e48597cc479ff.tar.gz
firejail-ce8729c36002ea513187be16352e48597cc479ff.tar.zst
firejail-ce8729c36002ea513187be16352e48597cc479ff.zip
fixes
-rw-r--r--src/firejail/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/firejail/main.c b/src/firejail/main.c
index 91a8380f3..aeb85d724 100644
--- a/src/firejail/main.c
+++ b/src/firejail/main.c
@@ -999,7 +999,7 @@ int main(int argc, char **argv) {
999 999
1000 // if a sandbox is already running, start the program directly without sandboxing 1000 // if a sandbox is already running, start the program directly without sandboxing
1001 int rv = check_kernel_procs(); 1001 int rv = check_kernel_procs();
1002 if (rv) { 1002 if (rv == 0) {
1003 run_no_sandbox(argc, argv); 1003 run_no_sandbox(argc, argv);
1004 // it will never get here! 1004 // it will never get here!
1005 assert(0); 1005 assert(0);