diff options
| author | jsing <> | 2014-06-08 14:33:04 +0000 | 
|---|---|---|
| committer | jsing <> | 2014-06-08 14:33:04 +0000 | 
| commit | 5537f9a415e58efaff3b336d4f2c48e97b7e3588 (patch) | |
| tree | 530a88168316b6ae7dd26c307fb9c59d94f585e8 /src/lib/libssl/t1_enc.c | |
| parent | 9cb11b7ad9617515b5ebba94dfb612136f3941d1 (diff) | |
| download | openbsd-5537f9a415e58efaff3b336d4f2c48e97b7e3588.tar.gz openbsd-5537f9a415e58efaff3b336d4f2c48e97b7e3588.tar.bz2 openbsd-5537f9a415e58efaff3b336d4f2c48e97b7e3588.zip | |
Be explicit with types. No binary change.
Diffstat (limited to '')
| -rw-r--r-- | src/lib/libssl/t1_enc.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/lib/libssl/t1_enc.c b/src/lib/libssl/t1_enc.c index 5f5c8e3488..353a408c98 100644 --- a/src/lib/libssl/t1_enc.c +++ b/src/lib/libssl/t1_enc.c | |||
| @@ -306,9 +306,9 @@ tls1_generate_key_block(SSL *s, unsigned char *km, unsigned char *tmp, int num) | |||
| 306 | */ | 306 | */ | 
| 307 | static int | 307 | static int | 
| 308 | tls1_change_cipher_state_cipher(SSL *s, char is_read, char use_client_keys, | 308 | tls1_change_cipher_state_cipher(SSL *s, char is_read, char use_client_keys, | 
| 309 | const unsigned char *mac_secret, unsigned mac_secret_size, | 309 | const unsigned char *mac_secret, unsigned int mac_secret_size, | 
| 310 | const unsigned char *key, unsigned key_len, const unsigned char *iv, | 310 | const unsigned char *key, unsigned int key_len, const unsigned char *iv, | 
| 311 | unsigned iv_len) | 311 | unsigned int iv_len) | 
| 312 | { | 312 | { | 
| 313 | static const unsigned char empty[] = ""; | 313 | static const unsigned char empty[] = ""; | 
| 314 | unsigned char export_tmp1[EVP_MAX_KEY_LENGTH]; | 314 | unsigned char export_tmp1[EVP_MAX_KEY_LENGTH]; | 
