summaryrefslogtreecommitdiffstats
path: root/sesman
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2006-08-14 05:09:58 +0000
committerjsorg71 <jsorg71>2006-08-14 05:09:58 +0000
commit2b054f9757418a9b6e1152f2baed87108091fcb5 (patch)
tree37370e1a64ecc4107713902069a3d4eabc688b52 /sesman
parent7cbeb4f30d915d8d97914d42f64a13111449949a (diff)
downloadxrdp-proprietary-2b054f9757418a9b6e1152f2baed87108091fcb5.tar.gz
xrdp-proprietary-2b054f9757418a9b6e1152f2baed87108091fcb5.zip
added -ac to Xserver start params
Diffstat (limited to 'sesman')
-rw-r--r--sesman/session.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sesman/session.c b/sesman/session.c
index fa7b15b2..f368e71b 100644
--- a/sesman/session.c
+++ b/sesman/session.c
@@ -230,13 +230,14 @@ for user %s denied", username);
env_check_password_file(passwd_file, password);
if (type == SESMAN_SESSION_TYPE_XVNC)
{
- g_execlp11("Xvnc", "Xvnc", screen, "-geometry", geometry,
- "-depth", depth, "-bs", "-rfbauth", passwd_file, 0);
+ g_execlp13("Xvnc", "Xvnc", screen, "-geometry", geometry,
+ "-depth", depth, "-bs", "-ac", "-rfbauth", passwd_file,
+ 0, 0);
}
else if (type == SESMAN_SESSION_TYPE_XRDP)
{
g_execlp11("Xrdp", "Xrdp", screen, "-geometry", geometry,
- "-depth", depth, "-bs", 0, 0, 0);
+ "-depth", depth, "-bs", "-ac", 0, 0);
}
else
{