diff options
-rw-r--r-- | src/modules/extra/m_ssl_gnutls.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/extra/m_ssl_gnutls.cpp b/src/modules/extra/m_ssl_gnutls.cpp index 9aec909c4..49078e262 100644 --- a/src/modules/extra/m_ssl_gnutls.cpp +++ b/src/modules/extra/m_ssl_gnutls.cpp @@ -254,7 +254,8 @@ class ModuleSSLGnuTLS : public Module * Old: gnutls_transport_set_ptr(session->sess, (gnutls_transport_ptr_t) fd); // Give gnutls the fd for the socket. */ - gnutls_transport_set_ptr(session->sess, &fd); // Give gnutls the fd for the socket. + gnutls_transport_set_ptr(session->sess, (gnutls_transport_ptr_t) fd); // Give gnutls the fd for the socket. + // gnutls_transport_set_ptr(session->sess, &fd); // Give gnutls the fd for the socket. Handshake(session); } |