Ticket #27606: patch-src-xstd-Ssl.cc.diff

File patch-src-xstd-Ssl.cc.diff, 348 bytes (added by fclaire@…, 13 years ago)
  • src/xstd/Ssl.cc

    old new  
    2323
    2424SslCtx::SslCtx(SslProtocol protocol, const String &cipher): theCtx(0) {
    2525#if OPENSSL_ENABLED
    26         SSL_METHOD *method;
     26        const SSL_METHOD *method;
    2727        switch(protocol) {
    2828                case SSLv2:
    2929                        method = ::SSLv2_method();