Re: Dillo crash on HTTPS connection (to MS web site)
eocene <[email protected]>
| Newsgroups | gmane.comp.web.dillo.devel |
|---|---|
| Message-ID | <[email protected]> |
On Thu, Feb 25, 2016 at 09:19:22AM +0200, John Found wrote:
> ** ERROR **: our TLS mystery error is: error:140C5042:SSL routines:ssl_undefined_function:called a function you should not call
> At ssl_lib.c:2800
(Oops, I missed your reply!)
Looking in the openssl source, that's just:
int ssl_undefined_function(SSL *s)
{
SSLerr(SSL_F_SSL_UNDEFINED_FUNCTION, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
return (0);
}
...which is no surprise at all. I thought it might at least tell me which
call was disliked.