aboutsummaryrefslogtreecommitdiffstats
path: root/src/firejail/sandbox.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/firejail/sandbox.c')
-rw-r--r--src/firejail/sandbox.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/firejail/sandbox.c b/src/firejail/sandbox.c
index 1ba655301..d43e1dac1 100644
--- a/src/firejail/sandbox.c
+++ b/src/firejail/sandbox.c
@@ -588,13 +588,15 @@ int sandbox(void* sandbox_arg) {
588 errno = 0; 588 errno = 0;
589 int rv = nice(cfg.nice); 589 int rv = nice(cfg.nice);
590 (void) rv; 590 (void) rv;
591printf("nice rv %d\n", rv);
592 if (errno) { 591 if (errno) {
593 fprintf(stderr, "Warning: cannot set nice value\n"); 592 fprintf(stderr, "Warning: cannot set nice value\n");
594 errno = 0; 593 errno = 0;
595 } 594 }
596 } 595 }
597 596
597 // clean /tmp/.X11-unix sockets
598 fs_x11();
599
598 //**************************** 600 //****************************
599 // set security filters 601 // set security filters
600 //**************************** 602 //****************************