aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README2
-rw-r--r--RELNOTES1
-rw-r--r--src/firejail/errno.c4
3 files changed, 6 insertions, 1 deletions
diff --git a/README b/README
index 2bcfd8222..22bace801 100644
--- a/README
+++ b/README
@@ -18,6 +18,8 @@ License: GPL v2
18Firejail Authors: 18Firejail Authors:
19 19
20netblue30 (netblue30@yahoo.com) 20netblue30 (netblue30@yahoo.com)
21Mattias Wadman (https://github.com/wader)
22 - seccomp errno filter support
21Peter Millerchip (https://github.com/pmillerchip) 23Peter Millerchip (https://github.com/pmillerchip)
22 - memory allocation fix 24 - memory allocation fix
23 - --private.keep to --private-home transition 25 - --private.keep to --private-home transition
diff --git a/RELNOTES b/RELNOTES
index 483b4cfa6..6428b8982 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -2,6 +2,7 @@ firejail (0.9.31) baseline; urgency=low
2 * lots of security profile changes 2 * lots of security profile changes
3 * added FBReader default profile 3 * added FBReader default profile
4 * added --interface option 4 * added --interface option
5 * added seccomp errno support
5 * bugfixes 6 * bugfixes
6 -- netblue30 <netblue30@yahoo.com> current development 7 -- netblue30 <netblue30@yahoo.com> current development
7 8
diff --git a/src/firejail/errno.c b/src/firejail/errno.c
index c6c5f8f6a..fd3ccf23b 100644
--- a/src/firejail/errno.c
+++ b/src/firejail/errno.c
@@ -21,7 +21,7 @@
21#ifdef HAVE_SECCOMP 21#ifdef HAVE_SECCOMP
22#include "firejail.h" 22#include "firejail.h"
23#include <errno.h> 23#include <errno.h>
24#include <attr/xattr.h> 24//#include <attr/xattr.h>
25 25
26typedef struct { 26typedef struct {
27 char *name; 27 char *name;
@@ -166,7 +166,9 @@ static ErrnoEntry errnolist[] = {
166 "ERFKILL", ERFKILL, 166 "ERFKILL", ERFKILL,
167 "EHWPOISON", EHWPOISON, 167 "EHWPOISON", EHWPOISON,
168 "ENOTSUP", ENOTSUP, 168 "ENOTSUP", ENOTSUP,
169#ifdef ENOATTR
169 "ENOATTR", ENOATTR, 170 "ENOATTR", ENOATTR,
171#endif
170}; 172};
171 173
172int errno_highest_nr(void) { 174int errno_highest_nr(void) {