diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2013-06-08 01:04:52 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2013-06-08 01:04:52 -0700 |
commit | 9ceb533a4523b3d9aa53949d4172004c1d3330ec (patch) | |
tree | 31a4f90a40907fc6e7e1c1c99acb058dc880e05c /xorg/X11R7.6/rdp | |
parent | c0863061d0335e316edeb7dd4edb698426670295 (diff) | |
download | xrdp-proprietary-9ceb533a4523b3d9aa53949d4172004c1d3330ec.tar.gz xrdp-proprietary-9ceb533a4523b3d9aa53949d4172004c1d3330ec.zip |
X11rdp: log client cursor caps
Diffstat (limited to 'xorg/X11R7.6/rdp')
-rw-r--r-- | xorg/X11R7.6/rdp/rdpup.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/xorg/X11R7.6/rdp/rdpup.c b/xorg/X11R7.6/rdp/rdpup.c index 78263b55..61ed302a 100644 --- a/xorg/X11R7.6/rdp/rdpup.c +++ b/xorg/X11R7.6/rdp/rdpup.c @@ -772,6 +772,14 @@ rdpup_process_msg(struct stream *s) LLOGLN(0, (" client can not do offscreen to offscreen blits")); g_can_do_pix_to_pix = 0; } + if (g_rdpScreen.client_info.pointer_flags & 1) + { + LLOGLN(0, (" client can do new(color) cursor")); + } + else + { + LLOGLN(0, (" client can not do new(color) cursor")); + } } else { |