~ubuntu-branches/ubuntu/quantal/nginx/quantal-updates

« back to all changes in this revision

Viewing changes to src/event/ngx_event_openssl.c

  • Committer: Bazaar Package Importer
  • Author(s): Kartik Mistry
  • Date: 2011-04-16 13:47:58 UTC
  • mfrom: (4.2.31 sid)
  • Revision ID: james.westby@ubuntu.com-20110416134758-yqca2qp5crh2hw2f
Tags: 1.0.0-2
* debian/rules:
  + Removed --with-file-aio support. Fixed FTBFS on kFreeBSD-* arch
    (Closes: #621882)

Show diffs side-by-side

added added

removed removed

Lines of Context:
155
155
 
156
156
    SSL_CTX_set_options(ssl->ctx, SSL_OP_MICROSOFT_SESS_ID_BUG);
157
157
    SSL_CTX_set_options(ssl->ctx, SSL_OP_NETSCAPE_CHALLENGE_BUG);
158
 
    SSL_CTX_set_options(ssl->ctx, SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG);
159
158
 
160
159
    /* server side options */
161
160
 
561
560
#if (NGX_DEBUG)
562
561
        {
563
562
        char         buf[129], *s, *d;
564
 
#if OPENSSL_VERSION_NUMBER >= 0x1000000fL
 
563
#if OPENSSL_VERSION_NUMBER >= 0x10000000L
565
564
        const
566
565
#endif
567
566
        SSL_CIPHER  *cipher;