summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2023-07-10 16:16:24 +0200
committerTomas Mraz <tomas@openssl.org>2023-07-14 11:51:48 +0200
commitb6bf1cbf1d48bd02f3fae2fb0bf922100efd0be5 (patch)
treefb89e2b5a568532166a2f5b99fde5caa33469c24 /include
parent69aef722645a6b0b2708ca3f08dde1599e2998a4 (diff)
quicapitest: Fix SSL_trace() test on big endian platforms
Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21411)
Diffstat (limited to 'include')
-rw-r--r--include/internal/recordmethod.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/internal/recordmethod.h b/include/internal/recordmethod.h
index a9823e43e4..247c24f032 100644
--- a/include/internal/recordmethod.h
+++ b/include/internal/recordmethod.h
@@ -63,7 +63,7 @@ typedef struct ossl_record_layer_st OSSL_RECORD_LAYER;
* buffer of payload data in |buf| of length |buflen|.
*/
struct ossl_record_template_st {
- int type;
+ unsigned char type;
unsigned int version;
const unsigned char *buf;
size_t buflen;