aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar startx2017 <vradu.startx@yandex.com>2019-05-29 09:37:19 -0400
committerLibravatar startx2017 <vradu.startx@yandex.com>2019-05-29 09:37:19 -0400
commit049bf71f50b0f2518e141e1f194c4e30f2b983f9 (patch)
tree978ab33e3de510919e31608cd062eb1d42d3146c
parentmerge: checking for invalid chars in profile filename before any other proce… (diff)
downloadfirejail-049bf71f50b0f2518e141e1f194c4e30f2b983f9.tar.gz
firejail-049bf71f50b0f2518e141e1f194c4e30f2b983f9.tar.zst
firejail-049bf71f50b0f2518e141e1f194c4e30f2b983f9.zip
merge: fix --list reporting for sandboxes using --x11=none
-rw-r--r--src/lib/common.c2
-rw-r--r--status11
2 files changed, 12 insertions, 1 deletions
diff --git a/src/lib/common.c b/src/lib/common.c
index 98fb82c11..25577f908 100644
--- a/src/lib/common.c
+++ b/src/lib/common.c
@@ -254,7 +254,7 @@ int pid_proc_cmdline_x11_xpra_xephyr(const pid_t pid) {
254 if (strncmp(arg, "--", 2) != 0) 254 if (strncmp(arg, "--", 2) != 0)
255 break; 255 break;
256 256
257 if (strcmp(arg, "--x11=xorg") == 0) 257 if (strcmp(arg, "--x11=xorg") == 0 || strcmp(arg, "--x11=none") == 0)
258 return 0; 258 return 0;
259 259
260 // check x11 xpra or xephyr 260 // check x11 xpra or xephyr
diff --git a/status b/status
index 5636b30fc..58f5cdc49 100644
--- a/status
+++ b/status
@@ -1,3 +1,14 @@
1todo: Jan 13: ffix parent death signal
2todo: Dec 17: join: also check proc file to detect nonewprivs bit
3todo: Sort items alphabetically in man firejail #2479, Feb 26
4todo: Alphabetical ordering of firecfg.config #2544, Mar 8
5todo: Fix incorrect parsing of --keep-var-tmp command #2587
6todo: Avoid including globals.local twice, #2586
7todo: Fix typo's in firecfg util.c #2627
8Mar 10: fix --list reporting for sandboxes using --x11=none; to be ported Mar 10
9Mar 10: checking for invalid chars in profile filename before any other proce…
10todo: documentation update - Feb 23
11Feb 6: strncmp byte count fixes
1Jan 19: disallow zero seconds timeout 12Jan 19: disallow zero seconds timeout
2 13
3Jan 9: fix netfilter-default functionality in /etc/firejail/firejail.config 14Jan 9: fix netfilter-default functionality in /etc/firejail/firejail.config