diff options
author | Matt Caswell <matt@openssl.org> | 2015-01-21 12:09:58 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2015-01-22 10:20:08 +0100 |
commit | dbd87ffc210328eb8670c24a427318172c1e334d (patch) | |
tree | 6175be66604e4bc349d37a6832e4547b9079410c /ssl/tls1.h | |
parent | modes/gcm128.c: make it indent-friendly. (diff) | |
download | openssl-dbd87ffc210328eb8670c24a427318172c1e334d.tar.xz openssl-dbd87ffc210328eb8670c24a427318172c1e334d.zip |
indent has problems with comments that are on the right hand side of a line.
Sometimes it fails to format them very well, and sometimes it corrupts them!
This commit moves some particularly problematic ones.
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to '')
-rw-r--r-- | ssl/tls1.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/ssl/tls1.h b/ssl/tls1.h index 4aac4c6172..d98f90d002 100644 --- a/ssl/tls1.h +++ b/ssl/tls1.h @@ -253,9 +253,12 @@ extern "C" { #define TLSEXT_TYPE_session_ticket 35 /* ExtensionType value from draft-rescorla-tls-opaque-prf-input-00.txt */ -#if 0 /* will have to be provided externally for now , - * i.e. build with -DTLSEXT_TYPE_opaque_prf_input=38183 - * using whatever extension number you'd like to try */ +#if 0 +/* + * will have to be provided externally for now , + * i.e. build with -DTLSEXT_TYPE_opaque_prf_input=38183 + * using whatever extension number you'd like to try + */ # define TLSEXT_TYPE_opaque_prf_input ?? #endif |