On Mon, Mar 06, 2017 at 09:31:40PM +0100, [email protected] wrote: > You're right, I'm hurry and tired. I dont sew the problem with > comparisons. I think that the attached version is ok. I reviewed all > comments.
OK this one looks good. I've just met a build issue here : src/ssl_sock.c: In function 'smp_fetch_ssl_fc_cl_str': src/ssl_sock.c:5716:69: error: operator '!' has no right operand #if (OPENSSL_VERSION_NUMBER >= 0x1000200fL) && !OPENSSL_NO_SSL_TRACE I changed it like this (added "defined()") : #if (OPENSSL_VERSION_NUMBER >= 0x1000200fL) && !defined(OPENSSL_NO_SSL_TRACE) And I've now merged it :-) Thanks, and try to have some rest, I suspect one little guy is keeping you awake too late at night! Willy

