aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/firejail/profile.c2
-rw-r--r--todo7
2 files changed, 9 insertions, 0 deletions
diff --git a/src/firejail/profile.c b/src/firejail/profile.c
index 05a8ece35..aeeacfde8 100644
--- a/src/firejail/profile.c
+++ b/src/firejail/profile.c
@@ -151,10 +151,12 @@ int profile_check_line(char *ptr, int lineno) {
151 return 0; 151 return 0;
152 } 152 }
153 153
154#ifdef HAVE_SECCOMP
154 if (strncmp(ptr, "protocol ", 9) == 0) { 155 if (strncmp(ptr, "protocol ", 9) == 0) {
155 protocol_store(ptr + 9); 156 protocol_store(ptr + 9);
156 return 0; 157 return 0;
157 } 158 }
159#endif
158 160
159 if (strncmp(ptr, "env ", 4) == 0) { 161 if (strncmp(ptr, "env ", 4) == 0) {
160 env_store(ptr + 4); 162 env_store(ptr + 4);
diff --git a/todo b/todo
index f9cce75d6..de1ef5f41 100644
--- a/todo
+++ b/todo
@@ -70,3 +70,10 @@ socat UNIX-LISTEN:/tmp/mysoc,fork ABSTRACT-CONNECT:/tmp/dbus-awBoQTCc &
70in sandbox 70in sandbox
71socat ABSTRACT-LISTEN:/tmp/dbus-awBoQTCc,fork UNIX-CONNECT:/tmp/mysock 71socat ABSTRACT-LISTEN:/tmp/dbus-awBoQTCc,fork UNIX-CONNECT:/tmp/mysock
72 72
7311. autotest for config options:
74
75./configure --enable-fatal-warnings --disable-seccomp --prefix=/usr
76./configure --enable-fatal-warnings --disable-chroot --prefix=/usr
77./configure --enable-fatal-warnings --disable-bind --prefix=/usr
78
79