From ab91a68d0f0554a3c126655f22833d1b554a3051 Mon Sep 17 00:00:00 2001 From: tb Date: Mon, 16 Mar 2020 15:25:13 +0000 Subject: Consistently spell 'unsigned' as 'unsigned int', as style(9) seems to prefer that. No binary change except in d1_srtp.c where the generated assembly differs only in line numbers (due to a wrapped long line) and in s3_cbc.c where there is no change in the generated assembly. ok inoguchi jsing --- lib/libssl/ssl_pkt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/libssl/ssl_pkt.c') diff --git a/lib/libssl/ssl_pkt.c b/lib/libssl/ssl_pkt.c index 0d1d4f78c78..157dd9895be 100644 --- a/lib/libssl/ssl_pkt.c +++ b/lib/libssl/ssl_pkt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_pkt.c,v 1.23 2020/03/12 17:09:02 jsing Exp $ */ +/* $OpenBSD: ssl_pkt.c,v 1.24 2020/03/16 15:25:14 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -332,7 +332,7 @@ ssl3_get_record(SSL *s) SSL3_RECORD_INTERNAL *rr; SSL_SESSION *sess; unsigned char md[EVP_MAX_MD_SIZE]; - unsigned mac_size, orig_len; + unsigned int mac_size, orig_len; rr = &(S3I(s)->rrec); sess = s->session; -- cgit v1.2.3-59-g8ed1b