OpenSSL 1.1.0 removed this function, https://www.openssl.org/docs/man1.1.0/ssl/SSL_COMP_free_compression_methods.html native/src/ssl.c 366 #if OPENSSL_VERSION_NUMBER >= 0x1000200fL 367 SSL_COMP_free_compression_methods(); 368 #endif this will need to be patched, suggestion below this is untested: 366 #if OPENSSL_VERSION_NUMBER >= 0x1000200fL && OPENSSL_VERSION_NUMBER < 0x10100000L 367 SSL_COMP_free_compression_methods(); 368 #endif
per openssl doc it says it is deprecated and do nothing, so I close the bug.
*** Bug 62428 has been marked as a duplicate of this bug. ***
Re-opening original BZ issue. Seems like this needs to be fixed by capping the OpenSSL version number used in the #ifdef. jballon, would you mind actually testing your proposed solution?
I think the problen is fixed by r1832911. Could you please retest?
I successfully rested with this fix. I verified that I no longer received the error message.