Re: [Openvpn-devel] stray USE_SSL in crypto_openssl.c

2013-04-15 Thread Steffan Karger
Hi Gert, On 04/14/2013 12:07 PM, Gert Doering wrote: > 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 >

[Openvpn-devel] stray USE_SSL in crypto_openssl.c

2013-04-14 Thread Gert Doering
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 (v