diff options
author | Jim Grandy <jgrandy@authentic8.com> | 2013-08-08 09:21:40 -0700 |
---|---|---|
committer | Jim Grandy <jgrandy@authentic8.com> | 2013-08-22 12:57:00 -0700 |
commit | a308d2e25c4e566669b86312d1bcf8a32c3cca1f (patch) | |
tree | 5e7811b4285194efcfaa27f8a936c7060810b084 /libxrdp/xrdp_rdp.c | |
parent | b7b3d9ef28e14e7e7ab20d74a71b1582bccf9430 (diff) | |
download | xrdp-proprietary-a308d2e25c4e566669b86312d1bcf8a32c3cca1f.tar.gz xrdp-proprietary-a308d2e25c4e566669b86312d1bcf8a32c3cca1f.zip |
Fix errors cause by previous merge (2361914)
Diffstat (limited to 'libxrdp/xrdp_rdp.c')
-rw-r--r-- | libxrdp/xrdp_rdp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libxrdp/xrdp_rdp.c b/libxrdp/xrdp_rdp.c index 45cb1db0..02a6b6fb 100644 --- a/libxrdp/xrdp_rdp.c +++ b/libxrdp/xrdp_rdp.c @@ -785,7 +785,7 @@ xrdp_rdp_send_demand_active(struct xrdp_rdp *self) INPUT_FLAG_FASTPATH_INPUT2 0x0020 */ flags = 0x0001 | 0x0004; if (self->client_info.use_fast_path & 2) - flags |= 0x0008 | 0x0020 + flags |= 0x0008 | 0x0020; out_uint16_le(s, flags); out_uint8s(s, 82); |