summaryrefslogtreecommitdiffstats
path: root/ssl/s3_enc.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-01-19 12:42:01 +0000
committerMatt Caswell <matt@openssl.org>2015-01-22 09:20:06 +0000
commite636e2acd753fb68f587c9fac2f381ad8c153528 (patch)
tree356224f7a2b351eeba71d2d44121a24fb072397b /ssl/s3_enc.c
parent28470b6095aa1f098860ffdf226f32e4c4cd334f (diff)
Fix source where indent will not be able to cope
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'ssl/s3_enc.c')
-rw-r--r--ssl/s3_enc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ssl/s3_enc.c b/ssl/s3_enc.c
index dd3e343ca8..4ae7a32f16 100644
--- a/ssl/s3_enc.c
+++ b/ssl/s3_enc.c
@@ -794,13 +794,14 @@ int n_ssl3_mac(SSL *ssl, unsigned char *md, int send)
header[j++] = rec->length >> 8;
header[j++] = rec->length & 0xff;
+ /* Final param == is SSLv3 */
ssl3_cbc_digest_record(
hash,
md, &md_size,
header, rec->input,
rec->length + md_size, rec->orig_len,
mac_sec, md_size,
- 1 /* is SSLv3 */);
+ 1);
}
else
{