Changeset 316bd8c in mod_gnutls for src/gnutls_io.c


Ignore:
Timestamp:
Apr 21, 2005, 9:29:13 PM (18 years ago)
Author:
Paul Querna <chip@…>
Branches:
asyncio, debian/master, debian/stretch-backports, jessie-backports, main, master, msva, proxy-ticket, upstream
Children:
46b85d8
Parents:
e924ddd
Message:
  • remove more debug logging.
  • fix a crash by changing the certificate structure *after* starting the handshake.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/gnutls_io.c

    re924ddd r316bd8c  
    382382            goto tryagain;
    383383        }
    384 
     384#if USING_2_1_RECENT
     385        ap_log_cerror(APLOG_MARK, APLOG_ERR, 0, ctxt->c,
     386                     "GnuTLS: Handshake Failed (%d) '%s'", ret,
     387                      gnutls_strerror(ret));
     388#else
    385389        ap_log_error(APLOG_MARK, APLOG_ERR, 0, ctxt->c->base_server,
    386390                     "GnuTLS: Handshake Failed (%d) '%s'", ret,
    387                       gnutls_strerror(ret));
     391                     gnutls_strerror(ret));
     392#endif
    388393        ctxt->status = -1;
    389394        gnutls_alert_send(ctxt->session, GNUTLS_AL_FATAL,
Note: See TracChangeset for help on using the changeset viewer.