summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-01-22 00:57:19 +0000
committerMatt Caswell <matt@openssl.org>2015-01-22 09:52:44 +0000
commit117e79dd88d1e208eb0d658d53e395471e7b537e (patch)
tree221d4b3d1b3b48a10c7c98cb7a61e0979e7c8e49 /ssl
parentbc91221636b969309f5b9e9a9ea6e6550cdf08cb (diff)
Yet more changes to comments
Conflicts: ssl/t1_enc.c Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'ssl')
-rw-r--r--ssl/t1_enc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ssl/t1_enc.c b/ssl/t1_enc.c
index a1df6af7d9..c36de5212f 100644
--- a/ssl/t1_enc.c
+++ b/ssl/t1_enc.c
@@ -156,7 +156,8 @@ static void tls1_P_hash(const EVP_MD *md, const unsigned char *sec,
HMAC_Final(&ctx,out,&j);
out+=j;
olen-=j;
- HMAC_Final(&ctx_tmp,A1,&A1_len); /* calc the next A1 value */
+ /* calc the next A1 value */
+ HMAC_Final(&ctx_tmp,A1,&A1_len);
}
else /* last one */
{