Changeset e9ef72c in mod_gnutls for src/gnutls_hooks.c
- Timestamp:
- Jun 20, 2016, 2:51:01 PM (5 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, master, proxy-ticket, upstream
- Children:
- 743e31f
- Parents:
- 5a5032f
- git-author:
- Thomas Klute <thomas2.klute@…> (06/20/16 13:29:13)
- git-committer:
- Thomas Klute <thomas2.klute@…> (06/20/16 14:51:01)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gnutls_hooks.c
r5a5032f re9ef72c 422 422 sc->enabled = GNUTLS_ENABLED_FALSE; 423 423 if (sc->tickets == GNUTLS_ENABLED_UNSET) 424 sc->tickets = GNUTLS_ENABLED_ TRUE;424 sc->tickets = GNUTLS_ENABLED_FALSE; 425 425 if (sc->export_certificates_size < 0) 426 426 sc->export_certificates_size = 0; … … 832 832 gnutls_strerror(err), err); 833 833 /* Initialize Session Tickets */ 834 if (session_ticket_key.data != NULL && ctxt->sc->tickets != 0) 834 if (session_ticket_key.data != NULL && 835 ctxt->sc->tickets == GNUTLS_ENABLED_TRUE) 835 836 { 836 837 err = gnutls_session_ticket_enable_server(ctxt->session, &session_ticket_key);
Note: See TracChangeset
for help on using the changeset viewer.