From c100c5cc9b1a2c52cfb23a0252ffb1d9efc65b7a Mon Sep 17 00:00:00 2001 From: netblue30 Date: Sun, 10 Mar 2019 10:32:44 -0400 Subject: fix --list reporting for sandboxes using --x11=none; to be ported to LTS and firetools --- src/lib/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib') diff --git a/src/lib/common.c b/src/lib/common.c index 3d701e62f..1678a4092 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) { if (strncmp(arg, "--", 2) != 0) break; - if (strcmp(arg, "--x11=xorg") == 0) + if (strcmp(arg, "--x11=xorg") == 0 || strcmp(arg, "--x11=none") == 0) return 0; // check x11 xpra or xephyr -- cgit v1.2.3-54-g00ecf