diff options
author | tb <> | 2020-03-16 15:25:14 +0000 |
---|---|---|
committer | tb <> | 2020-03-16 15:25:14 +0000 |
commit | afbeb5d666df4224373ad3c47cef95d0c68ed8d5 (patch) | |
tree | 618a5907f280250b761792adbc8ceb103d1a5999 /src/lib/libssl/ssl_pkt.c | |
parent | dc99a0fd50f2ded1793b4651a9931696db2b6614 (diff) | |
download | openbsd-afbeb5d666df4224373ad3c47cef95d0c68ed8d5.tar.gz openbsd-afbeb5d666df4224373ad3c47cef95d0c68ed8d5.tar.bz2 openbsd-afbeb5d666df4224373ad3c47cef95d0c68ed8d5.zip |
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
Diffstat (limited to 'src/lib/libssl/ssl_pkt.c')
-rw-r--r-- | src/lib/libssl/ssl_pkt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl_pkt.c b/src/lib/libssl/ssl_pkt.c index 0d1d4f78c7..157dd9895b 100644 --- a/src/lib/libssl/ssl_pkt.c +++ b/src/lib/libssl/ssl_pkt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_pkt.c,v 1.23 2020/03/12 17:09:02 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_pkt.c,v 1.24 2020/03/16 15:25:14 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -332,7 +332,7 @@ ssl3_get_record(SSL *s) | |||
332 | SSL3_RECORD_INTERNAL *rr; | 332 | SSL3_RECORD_INTERNAL *rr; |
333 | SSL_SESSION *sess; | 333 | SSL_SESSION *sess; |
334 | unsigned char md[EVP_MAX_MD_SIZE]; | 334 | unsigned char md[EVP_MAX_MD_SIZE]; |
335 | unsigned mac_size, orig_len; | 335 | unsigned int mac_size, orig_len; |
336 | 336 | ||
337 | rr = &(S3I(s)->rrec); | 337 | rr = &(S3I(s)->rrec); |
338 | sess = s->session; | 338 | sess = s->session; |