Index: openssl/ssl/s3_clnt.c |
diff --git a/openssl/ssl/s3_clnt.c b/openssl/ssl/s3_clnt.c |
index 85ffd6780bc0e23e1bb93205b7762112aa09bf27..e47eef1b62dda4cd6ccec1860a044d698befeae7 100644 |
--- a/openssl/ssl/s3_clnt.c |
+++ b/openssl/ssl/s3_clnt.c |
@@ -757,7 +757,9 @@ int ssl3_client_hello(SSL *s) |
if (RAND_pseudo_bytes(p,SSL3_RANDOM_SIZE-4) <= 0) |
goto err; |
- /* Do the message type and length last */ |
+ /* Do the message type and length last. |
+ * Note: the code to add the padding extension in t1_lib.c |
+ * depends on the size of this prefix. */ |
d=p= &(buf[4]); |
/* version indicates the negotiated version: for example from |