From: Remi Tricot-Le Breton Date: Tue, 28 Feb 2023 16:46:26 +0000 (+0100) Subject: MINOR: ssl: Reorder struct certificate_ocsp members X-Git-Tag: v2.8-dev5~55 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=07b7c15bcec8d35736d9235b1fda13559057bd90;p=thirdparty%2Fhaproxy.git 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. --- diff --git a/include/haproxy/ssl_ocsp-t.h b/include/haproxy/ssl_ocsp-t.h index 599d68afd5..44484319f7 100644 --- a/include/haproxy/ssl_ocsp-t.h +++ b/include/haproxy/ssl_ocsp-t.h @@ -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;