diff options
author | Matt Caswell <matt@openssl.org> | 2015-01-22 00:54:59 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2015-01-22 10:20:09 +0100 |
commit | 22b52164aaed31d6e93dbd2d397ace041360e6aa (patch) | |
tree | 02ae02930b885bcf09e7ef0ad2096910ea9a131a | |
parent | Tweaks for comments due to indent's inability to handle them (diff) | |
download | openssl-22b52164aaed31d6e93dbd2d397ace041360e6aa.tar.xz openssl-22b52164aaed31d6e93dbd2d397ace041360e6aa.zip |
More tweaks for comments due indent issuesmaster-pre-auto-reformat
Conflicts:
ssl/ssl_ciph.c
ssl/ssl_locl.h
Conflicts:
ssl/s2_srvr.c
ssl/ssl.h
Reviewed-by: Tim Hudson <tjh@openssl.org>
-rw-r--r-- | ssl/ssl_ciph.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ssl/ssl_ciph.c b/ssl/ssl_ciph.c index a046c71e2f..4ce5d8e01f 100644 --- a/ssl/ssl_ciph.c +++ b/ssl/ssl_ciph.c @@ -264,7 +264,8 @@ static const SSL_CIPHER cipher_aliases[]={ {0,SSL_TXT_DSS,0, 0,SSL_aDSS, 0,0,0,0,0,0,0}, {0,SSL_TXT_aKRB5,0, 0,SSL_aKRB5, 0,0,0,0,0,0,0}, {0,SSL_TXT_aNULL,0, 0,SSL_aNULL, 0,0,0,0,0,0,0}, - {0,SSL_TXT_aDH,0, 0,SSL_aDH, 0,0,0,0,0,0,0}, /* no such ciphersuites supported! */ + /* no such ciphersuites supported! */ + {0,SSL_TXT_aDH,0, 0,SSL_aDH, 0,0,0,0,0,0,0}, {0,SSL_TXT_aECDH,0, 0,SSL_aECDH, 0,0,0,0,0,0,0}, {0,SSL_TXT_aECDSA,0, 0,SSL_aECDSA,0,0,0,0,0,0,0}, {0,SSL_TXT_ECDSA,0, 0,SSL_aECDSA, 0,0,0,0,0,0,0}, |