From 3ee0df541e284074662c7c916951fb37aac4abef Mon Sep 17 00:00:00 2001 From: netblue30 Date: Fri, 15 Apr 2016 15:34:19 -0400 Subject: x11 fixes --- src/firejail/x11.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/firejail/x11.c b/src/firejail/x11.c index ef1095a49..985ca9337 100644 --- a/src/firejail/x11.c +++ b/src/firejail/x11.c @@ -170,7 +170,7 @@ void x11_start_xephyr(int argc, char **argv) { // unfortunately, xephyr does a number of weird things when started by root user!!! if (getuid() == 0) { - fprintf(stderr, "Error: this feature is not available when running as root\n"); + fprintf(stderr, "Error: X11 sandboxing is not available when running as root\n"); exit(1); } @@ -292,7 +292,7 @@ void x11_start_xpra(int argc, char **argv) { // unfortunately, xpra does a number of weird things when started by root user!!! if (getuid() == 0) { - fprintf(stderr, "Error: this feature is not available when running as root\n"); + fprintf(stderr, "Error: X11 sandboxing is not available when running as root\n"); exit(1); } @@ -410,7 +410,7 @@ void x11_start(int argc, char **argv) { // unfortunately, xpra does a number of weird things when started by root user!!! if (getuid() == 0) { - fprintf(stderr, "Error: this feature is not available when running as root\n"); + fprintf(stderr, "Error: X11 sandboxing is not available when running as root\n"); exit(1); } -- cgit v1.2.3-54-g00ecf