MINOR: ssl: Reorder struct certificate_ocsp members

Just swapping those two 'refcount' and 'response' members enables to
fill two 4 bytes holes in the structure.
This commit is contained in:
Remi Tricot-Le Breton 2023-02-28 17:46:26 +01:00 committed by William Lallemand
parent b33fe2f4a2
commit 07b7c15bce

View File

@ -42,8 +42,8 @@ struct certificate_ocsp {
struct ebmb_node key;
unsigned char key_data[OCSP_MAX_CERTID_ASN1_LENGTH];
unsigned int key_length;
struct buffer response;
int refcount;
struct buffer response;
long expire;
X509 *issuer;
STACK_OF(X509) *chain;