Hi, this is something for Adriaan or Steffan, I think... in crypto_openssl.c, we have two stray uses of #ifdef USE_SSL...
void
crypto_init_lib (void)
{
#ifndef USE_SSL
#ifndef ENABLE_SMALL
ERR_load_crypto_strings ();
#endif
OpenSSL_add_all_algorithms ();
#endif
...
void
crypto_uninit_lib (void)
{
#ifndef USE_SSL
EVP_cleanup ();
#ifndef ENABLE_SMALL
ERR_free_strings ();
#endif
#endif
... should this be ENABLE_SSL? Or not be there at all?
I won't claim to understand the code, but I can say for sure that we
do not have a "USE_SSL" conditional anymore :-) - this is now ENABLE_SSL.
Please check and send patch :-)
gert
--
USENET is *not* the non-clickable part of WWW!
//www.muc.de/~gert/
Gert Doering - Munich, Germany [email protected]
fax: +49-89-35655025 [email protected]
pgpkoH3cg8mlr.pgp
Description: PGP signature
