From 90bf7104dec7b12ae6a5621c3ee508f75fca6976 Mon Sep 17 00:00:00 2001 From: David Benjamin Date: Thu, 14 Jul 2016 15:02:43 -0400 Subject: [PATCH] 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 Commit-Queue: David Benjamin CQ-Verified: CQ bot account: commit-bot@chromium.org --- include/openssl/ssl.h | 8 ++++---- 1 file 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;