diff options
author | Pavel Roskin <plroskin@gmail.com> | 2017-03-03 23:27:03 -0800 |
---|---|---|
committer | jsorg71 <jay.sorg@gmail.com> | 2017-03-21 10:39:40 -0700 |
commit | 43899b7e0c30cde282ef72f6431029c04c8ab242 (patch) | |
tree | 0cb88e033f9f300dd192c540f2d41e5cf98c22a7 /common | |
parent | b0c2f1852151592ea9426f6a96b5a6cd3e308ec7 (diff) | |
download | xrdp-proprietary-43899b7e0c30cde282ef72f6431029c04c8ab242.tar.gz xrdp-proprietary-43899b7e0c30cde282ef72f6431029c04c8ab242.zip |
Allocate space for tls_ciphers dynamically
Diffstat (limited to 'common')
-rw-r--r-- | common/xrdp_client_info.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/xrdp_client_info.h b/common/xrdp_client_info.h index ec82a871..e8e91da4 100644 --- a/common/xrdp_client_info.h +++ b/common/xrdp_client_info.h @@ -148,7 +148,7 @@ struct xrdp_client_info int max_unacknowledged_frame_count; long ssl_protocols; - char tls_ciphers[64]; + char *tls_ciphers; int client_os_major; int client_os_minor; |