On Mon, Jul 26, 2010 at 2:13 PM, Uwe Bonnes bon@elektron.ikp.physik.tu-darmstadt.de wrote:
-static SSL_METHOD *meth; +#if defined(OPENSSL_VERSION_NUMBER) && (OPENSSL_VERSION_NUMBER> 0x1000000) +static const SSL_METHOD *meth; +#else +const SSL_METHOD *method;
There's a typo here, last line should declare meth not method.
Octavian