View | Details | Raw Unified | Return to bug 50007
Collapse All | Expand All

(-)sim/libicq/icqssl.cpp (-1 / +1 lines)
Lines 151-157 Link Here
151
#else
151
#else
152
        SSL_CTX_set_cipher_list(gSSL_CTX, "ADH");
152
        SSL_CTX_set_cipher_list(gSSL_CTX, "ADH");
153
#endif
153
#endif
154
        SSL_CTX_set_info_callback(gSSL_CTX, (void (*)())ssl_info_callback);
154
        SSL_CTX_set_info_callback(gSSL_CTX, (void (*)(const SSL*, int, int))ssl_info_callback);
155
        DH *dh = get_dh512();
155
        DH *dh = get_dh512();
156
        SSL_CTX_set_tmp_dh(gSSL_CTX, dh);
156
        SSL_CTX_set_tmp_dh(gSSL_CTX, dh);
157
        DH_free(dh);
157
        DH_free(dh);

Return to bug 50007