Patch #63746 revisited: Add const qualifer after version check

Octavian Voicu octavian.voicu at gmail.com
Mon Jul 26 10:40:19 CDT 2010


On Mon, Jul 26, 2010 at 2:13 PM, Uwe Bonnes
<bon at 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



More information about the wine-devel mailing list