Title: OpenSSL and Rational purify dont' mix??

Hi,

I am getting the following error from SSL_CTX_new :-

error:00000000140A90A1:SSL routines:SSL_CTX_new:library has no ciphers

and this is only occurring when I am using rational purify.

These are the steps I use to initialise:
if (!SSL_library_init())
{
    return false;
}

SSL_load_error_strings();

SSL_METHOD *meth = SSLv3_method();
if (!meth)
{
    PrintErrors();
    return false;
}

ctx = SSL_CTX_new(meth);           <== fails here
if (!ctx)
{
    PrintErrors();
    return false;
}

[snip]

I am using OpenSSL 0.9.6c, gcc 2.95.3 (rational doesn't support gcc 3.x), and purify 2001a.04.00 under Solaris 2.8.

Any advice would be greatly appreciated.

TIA,
Sean.
DISCLAIMER: This e-mail is confidential and may also be legally privileged.  If you are not the intended recipient, use of the information contained in this e-mail (including disclosure, copying or distribution) is prohibited and may be unlawful.  Please inform the sender and delete the message immediately from your system.  This e-mail is attributed to the sender and may not necessarily reflect the views of the patsystems Group and no member of the patsystems Group accepts any liability for any action taken in reliance on the contents of this e-mail (other than where it has a legal or regulatory obligation to do so) or for the consequences of any computer viruses which may have been transmitted by this e-mail. The patsystems Group comprises patsystems plc and its subsidiary group of companies.

Reply via email to