Accepting request 590071 from home:zhangxiaofei:branches:X11:RemoteDesktop

- Update xrdp-fate319683-allow-vnc-resizing.patch: Fix interface
  call incompatibleness (bsc#1064602, bsc#1075163)

OBS-URL: https://build.opensuse.org/request/show/590071
OBS-URL: https://build.opensuse.org/package/show/X11:RemoteDesktop/xrdp?expand=0&rev=33
This commit is contained in:
Tomáš Chvátal 2018-03-22 11:08:31 +00:00 committed by Git OBS Bridge
parent 292cb544ab
commit 7f996520bf
2 changed files with 8 additions and 2 deletions

View File

@ -48,12 +48,12 @@ index db593da..0db68b9 100644
+ else if (encoding == 0xfffffecc) /* extended desktop resize */
+ {
+ init_stream(s, 8192);
+ error = lib_recv(v, s->data, 4);
+ error = trans_force_read_s(v->trans, s, 4);
+ if (error == 0)
+ {
+ in_uint8(s, k); /* number of screens */
+ in_uint8s(s, 3);
+ error = lib_recv(v, s->data, k * 16);
+ error = trans_force_read_s(v->trans, s, k * 16);
+ if (error == 0)
+ {
+ in_uint8s(s, k * 16); /* skip screen list */

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Mar 22 10:21:51 UTC 2018 - fezhang@suse.com
- Update xrdp-fate319683-allow-vnc-resizing.patch: Fix interface
call incompatibleness (bsc#1064602, bsc#1075163)
-------------------------------------------------------------------
Thu Jan 4 08:43:48 UTC 2018 - fezhang@suse.com