aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-04-07 10:10:59 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2016-04-07 10:10:59 -0400
commitd9c1b037e39190c91a0b92e265c2eb93bdd023f7 (patch)
treee25907d1d8bf8d81c0b4ee6c94c4270e83214591
parentadded Grsecurity configuration in src/tools directory (diff)
downloadfirejail-d9c1b037e39190c91a0b92e265c2eb93bdd023f7.tar.gz
firejail-d9c1b037e39190c91a0b92e265c2eb93bdd023f7.tar.zst
firejail-d9c1b037e39190c91a0b92e265c2eb93bdd023f7.zip
cleanup
-rw-r--r--README1
-rw-r--r--RELNOTES3
-rw-r--r--src/firejail/list.c2
3 files changed, 4 insertions, 2 deletions
diff --git a/README b/README
index 7433f9ebc..3b5ae1e76 100644
--- a/README
+++ b/README
@@ -103,6 +103,7 @@ avoidr (https://github.com/avoidr)
103 - Google Chrome profile rework 103 - Google Chrome profile rework
104 - added cmus profile 104 - added cmus profile
105 - man page fixes 105 - man page fixes
106 - add net iface support in profile files
106Bruno Nova (https://github.com/brunonova) 107Bruno Nova (https://github.com/brunonova)
107 - whitelist fix 108 - whitelist fix
108 - bash arguments fix 109 - bash arguments fix
diff --git a/RELNOTES b/RELNOTES
index c9d3fd755..c58911620 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -3,8 +3,9 @@ firejail (0.9.40-rc1) baseline; urgency=low
3 * added --x11 option 3 * added --x11 option
4 * added --x11=xpra option 4 * added --x11=xpra option
5 * added --x11=xephyr option 5 * added --x11=xephyr option
6 * added --cpu.print option
6 * added filetransfer options --ls and --get 7 * added filetransfer options --ls and --get
7 * added mkdir, ipc-namespace and nosound profile commands 8 * added mkdir, ipc-namespace, net iface and nosound profile commands
8 * --version also prints compile options 9 * --version also prints compile options
9 * --output option also redirects stderr 10 * --output option also redirects stderr
10 * added compile-time option to restrict --net= to root only 11 * added compile-time option to restrict --net= to root only
diff --git a/src/firejail/list.c b/src/firejail/list.c
index e6f0cc7ac..73feb48aa 100644
--- a/src/firejail/list.c
+++ b/src/firejail/list.c
@@ -21,7 +21,7 @@
21#include <sys/types.h> 21#include <sys/types.h>
22#include <sys/stat.h> 22#include <sys/stat.h>
23 23
24void static grsec_elevate_privileges(void) { 24static void grsec_elevate_privileges(void) {
25 struct stat s; 25 struct stat s;
26 if (stat("/proc/sys/kernel/grsecurity", &s) == 0) { 26 if (stat("/proc/sys/kernel/grsecurity", &s) == 0) {
27 EUID_ROOT(); 27 EUID_ROOT();