diff options
author | jsorg71 <jsorg71> | 2006-08-14 05:09:58 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2006-08-14 05:09:58 +0000 |
commit | 2b054f9757418a9b6e1152f2baed87108091fcb5 (patch) | |
tree | 37370e1a64ecc4107713902069a3d4eabc688b52 /sesman | |
parent | 7cbeb4f30d915d8d97914d42f64a13111449949a (diff) | |
download | xrdp-proprietary-2b054f9757418a9b6e1152f2baed87108091fcb5.tar.gz xrdp-proprietary-2b054f9757418a9b6e1152f2baed87108091fcb5.zip |
added -ac to Xserver start params
Diffstat (limited to 'sesman')
-rw-r--r-- | sesman/session.c | 7 |
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 { |