summaryrefslogtreecommitdiff
path: root/src/lib/libssl/t1_enc.c
diff options
context:
space:
mode:
authortb <>2020-03-16 15:25:14 +0000
committertb <>2020-03-16 15:25:14 +0000
commitafbeb5d666df4224373ad3c47cef95d0c68ed8d5 (patch)
tree618a5907f280250b761792adbc8ceb103d1a5999 /src/lib/libssl/t1_enc.c
parentdc99a0fd50f2ded1793b4651a9931696db2b6614 (diff)
downloadopenbsd-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/t1_enc.c')
-rw-r--r--src/lib/libssl/t1_enc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/t1_enc.c b/src/lib/libssl/t1_enc.c
index 177ee061ed..2893e1d4dc 100644
--- a/src/lib/libssl/t1_enc.c
+++ b/src/lib/libssl/t1_enc.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: t1_enc.c,v 1.121 2020/03/13 16:40:42 jsing Exp $ */ 1/* $OpenBSD: t1_enc.c,v 1.122 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 *
@@ -336,7 +336,7 @@ tls1_aead_ctx_init(SSL_AEAD_CTX **aead_ctx)
336 336
337static int 337static int
338tls1_change_cipher_state_aead(SSL *s, char is_read, const unsigned char *key, 338tls1_change_cipher_state_aead(SSL *s, char is_read, const unsigned char *key,
339 unsigned key_len, const unsigned char *iv, unsigned iv_len) 339 unsigned int key_len, const unsigned char *iv, unsigned int iv_len)
340{ 340{
341 const EVP_AEAD *aead = S3I(s)->tmp.new_aead; 341 const EVP_AEAD *aead = S3I(s)->tmp.new_aead;
342 SSL_AEAD_CTX *aead_ctx; 342 SSL_AEAD_CTX *aead_ctx;