Changeset a85de63 in mod_gnutls for src/gnutls_ocsp.c
- Timestamp:
- Apr 19, 2018, 3:09:04 PM (3 years ago)
- Branches:
- asyncio, debian/master, master, proxy-ticket
- Children:
- 103cafa
- Parents:
- c34a68b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gnutls_ocsp.c
rc34a68b ra85de63 1 1 /* 2 * Copyright 2016 Fiona Klute2 * Copyright 2016-2018 Fiona Klute 3 3 * 4 4 * Licensed under the Apache License, Version 2.0 (the "License"); … … 772 772 } 773 773 774 *ocsp_response = sc->cache->fetch(ctxt, 775 sc->ocsp->fingerprint); 774 *ocsp_response = ctxt->sc->cache->fetch(ctxt->c->base_server, 775 ctxt->sc->ocsp->fingerprint, 776 ctxt->c->pool); 776 777 if (ocsp_response->size == 0) 777 778 { … … 808 809 * moment there's no good way to integrate that with the 809 810 * Apache Mutex directive. */ 810 *ocsp_response = sc->cache->fetch(ctxt, 811 sc->ocsp->fingerprint); 811 *ocsp_response = ctxt->sc->cache->fetch(ctxt->c->base_server, 812 ctxt->sc->ocsp->fingerprint, 813 ctxt->c->pool); 812 814 if (ocsp_response->size > 0) 813 815 { … … 837 839 838 840 /* retry reading from cache */ 839 *ocsp_response = sc->cache->fetch(ctxt, 840 sc->ocsp->fingerprint); 841 *ocsp_response = ctxt->sc->cache->fetch(ctxt->c->base_server, 842 ctxt->sc->ocsp->fingerprint, 843 ctxt->c->pool); 841 844 if (ocsp_response->size == 0) 842 845 {
Note: See TracChangeset
for help on using the changeset viewer.