Use correct types for ssl and ctx fields in struct ssl_tls

This commit is contained in:
Pavel Roskin 2016-07-08 01:33:29 +00:00
parent 2cb3af8ac3
commit 28a1a090b3
1 changed files with 2 additions and 2 deletions

View File

@ -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;