From: Daniel Stenberg Date: Mon, 19 May 2025 12:36:57 +0000 (+0200) Subject: urldata: move a struct field in ssl_primary_config X-Git-Tag: curl-8_14_0~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c0f724e887a727c16afbae1967e8f136a062ff31;p=thirdparty%2Fcurl.git urldata: move a struct field in ssl_primary_config ... which makes the struct eight bytes smaller with no gaps. Closes #17386 --- diff --git a/lib/urldata.h b/lib/urldata.h index 912abdada2..9cba2c25b1 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -275,8 +275,8 @@ struct ssl_primary_config { char *password; /* TLS password (for, e.g., SRP) */ #endif char *curves; /* list of curves to use */ - unsigned char ssl_options; /* the CURLOPT_SSL_OPTIONS bitmask */ unsigned int version_max; /* max supported version the client wants to use */ + unsigned char ssl_options; /* the CURLOPT_SSL_OPTIONS bitmask */ unsigned char version; /* what version the client wants to use */ BIT(verifypeer); /* set TRUE if this is desired */ BIT(verifyhost); /* set TRUE if CN/SAN must match hostname */