Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@google.com>2016-07-14 22:02:43 +0300
committerCQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>2016-07-14 22:19:59 +0300
commit90bf7104dec7b12ae6a5621c3ee508f75fca6976 (patch)
treeb2630292e04ec7be1c105824d8a5035931d305c7
parent49ec9bb3533ae8ba2d3e98d03e691c3f82360b56 (diff)
Reformat some macros.
clang-format is being really insistent on reformatting these even when I tell it only to reformat a small region far away. Change-Id: I46cfd40e8c8658b73caee9c7deae65265c42f762 Reviewed-on: https://boringssl-review.googlesource.com/8787 Reviewed-by: David Benjamin <davidben@google.com> Commit-Queue: David Benjamin <davidben@google.com> CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
-rw-r--r--include/openssl/ssl.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/openssl/ssl.h b/include/openssl/ssl.h
index 8747d584..d0bc1038 100644
--- a/include/openssl/ssl.h
+++ b/include/openssl/ssl.h
@@ -3242,16 +3242,16 @@ OPENSSL_EXPORT int *SSL_get_server_tmp_key(SSL *ssl, EVP_PKEY **out_key);
#define SSL_get_cipher(ssl) SSL_CIPHER_get_name(SSL_get_current_cipher(ssl))
#define SSL_get_cipher_bits(ssl, out_alg_bits) \
- SSL_CIPHER_get_bits(SSL_get_current_cipher(ssl), out_alg_bits)
+ SSL_CIPHER_get_bits(SSL_get_current_cipher(ssl), out_alg_bits)
#define SSL_get_cipher_version(ssl) \
- SSL_CIPHER_get_version(SSL_get_current_cipher(ssl))
+ SSL_CIPHER_get_version(SSL_get_current_cipher(ssl))
#define SSL_get_cipher_name(ssl) \
- SSL_CIPHER_get_name(SSL_get_current_cipher(ssl))
+ SSL_CIPHER_get_name(SSL_get_current_cipher(ssl))
#define SSL_get_time(session) SSL_SESSION_get_time(session)
#define SSL_set_time(session, time) SSL_SESSION_set_time((session), (time))
#define SSL_get_timeout(session) SSL_SESSION_get_timeout(session)
#define SSL_set_timeout(session, timeout) \
- SSL_SESSION_set_timeout((session), (timeout))
+ SSL_SESSION_set_timeout((session), (timeout))
typedef struct ssl_comp_st SSL_COMP;