diff options
author | Pavel Roskin <plroskin@gmail.com> | 2016-07-08 01:33:29 +0000 |
---|---|---|
committer | Pavel Roskin <plroskin@gmail.com> | 2016-07-08 04:29:53 +0000 |
commit | 28a1a090b3463042d2c03964f42da1f0f18f2c23 (patch) | |
tree | 58a6a3b21290b93e132996d8fa6b0d5d4561a91e /common/ssl_calls.h | |
parent | 2cb3af8ac305c3387ce6f83e85c3bc76fbc4b979 (diff) | |
download | xrdp-proprietary-28a1a090b3463042d2c03964f42da1f0f18f2c23.tar.gz xrdp-proprietary-28a1a090b3463042d2c03964f42da1f0f18f2c23.zip |
Use correct types for ssl and ctx fields in struct ssl_tls
Diffstat (limited to 'common/ssl_calls.h')
-rw-r--r-- | common/ssl_calls.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/ssl_calls.h b/common/ssl_calls.h index c470e63a..aa7cffb1 100644 --- a/common/ssl_calls.h +++ b/common/ssl_calls.h @@ -84,8 +84,8 @@ ssl_gen_key_xrdp1(int key_size_in_bits, char* exp, int exp_len, /* ssl_tls */ struct ssl_tls { - void *ssl; /* SSL * */ - void *ctx; /* SSL_CTX * */ + struct ssl_st *ssl; /* SSL * */ + struct ssl_ctx_st *ctx; /* SSL_CTX * */ char *cert; char *key; struct trans *trans; |