Fix command indentation in ssl_parse_client_key_exchange()
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
diff --git a/library/ssl_tls12_server.c b/library/ssl_tls12_server.c
index fda5db5..bfd8fd3 100644
--- a/library/ssl_tls12_server.c
+++ b/library/ssl_tls12_server.c
@@ -4075,11 +4075,11 @@
p += ecpoint_len;
/* As RFC 5489 section 2, the premaster secret is formed as follows:
- * - a uint16 containing the length (in octets) of the ECDH computation
- * - the octet string produced by the ECDH computation
- * - a uint16 containing the length (in octets) of the PSK
- * - the PSK itself
- */
+ * - a uint16 containing the length (in octets) of the ECDH computation
+ * - the octet string produced by the ECDH computation
+ * - a uint16 containing the length (in octets) of the PSK
+ * - the PSK itself
+ */
unsigned char *psm = ssl->handshake->premaster;
const unsigned char* const psm_end =
psm + sizeof( ssl->handshake->premaster );