diff options
author | speidy <speidy@gmail.com> | 2017-01-15 08:51:43 +0200 |
---|---|---|
committer | speidy <speidy@gmail.com> | 2017-01-15 08:51:43 +0200 |
commit | b7da395b5e46eab4b333d53e66e7f5da61a3dc11 (patch) | |
tree | 2109ab9e5c23cc57b0461d74c171f6b419ab38aa /libxrdp | |
parent | 264aad7603bd1bf6d8ebe8b7c452a9a0bc8e2e4a (diff) | |
download | xrdp-proprietary-b7da395b5e46eab4b333d53e66e7f5da61a3dc11.tar.gz xrdp-proprietary-b7da395b5e46eab4b333d53e66e7f5da61a3dc11.zip |
libxrdp: use constant RDP_DATA_PDU_LOGON
Diffstat (limited to 'libxrdp')
-rw-r--r-- | libxrdp/xrdp_rdp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libxrdp/xrdp_rdp.c b/libxrdp/xrdp_rdp.c index 9b1f54fd..49d8c4b2 100644 --- a/libxrdp/xrdp_rdp.c +++ b/libxrdp/xrdp_rdp.c @@ -1282,8 +1282,7 @@ xrdp_rdp_send_session_info(struct xrdp_rdp *self, const char *data, s_mark_end(s); - /* SAVE_SESSION_INFO 0x26 */ - if (xrdp_rdp_send_data(self, s, 0x26) != 0) + if (xrdp_rdp_send_data(self, s, RDP_DATA_PDU_LOGON) != 0) { free_stream(s); return 1; |