aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2016-12-07 08:17:06 -0800
committerGravatar Mark D. Roth <roth@google.com>2016-12-07 08:17:06 -0800
commitcc8487eebe81216c0ca741344904a5dd619abf74 (patch)
tree83a6e53bd4fda7816ec54a0bdbf054b30c43baa3 /src/core/lib
parentd0953408971fcc8260de83f2afce9980081f0af5 (diff)
clang-format
Diffstat (limited to 'src/core/lib')
-rw-r--r--src/core/lib/security/transport/security_connector.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/core/lib/security/transport/security_connector.c b/src/core/lib/security/transport/security_connector.c
index 6431adbd61..95d6563ac1 100644
--- a/src/core/lib/security/transport/security_connector.c
+++ b/src/core/lib/security/transport/security_connector.c
@@ -400,9 +400,8 @@ static void ssl_channel_add_handshakers(grpc_exec_ctx *exec_ctx,
: c->target_name,
&tsi_hs);
// Create handshakers.
- grpc_handshake_manager_add(
- handshake_mgr,
- grpc_security_handshaker_create(exec_ctx, tsi_hs, &sc->base));
+ grpc_handshake_manager_add(handshake_mgr, grpc_security_handshaker_create(
+ exec_ctx, tsi_hs, &sc->base));
}
static void ssl_server_add_handshakers(grpc_exec_ctx *exec_ctx,
@@ -415,9 +414,8 @@ static void ssl_server_add_handshakers(grpc_exec_ctx *exec_ctx,
ssl_create_handshaker(c->handshaker_factory, false /* is_client */,
NULL /* peer_name */, &tsi_hs);
// Create handshakers.
- grpc_handshake_manager_add(
- handshake_mgr,
- grpc_security_handshaker_create(exec_ctx, tsi_hs, &sc->base));
+ grpc_handshake_manager_add(handshake_mgr, grpc_security_handshaker_create(
+ exec_ctx, tsi_hs, &sc->base));
}
static int ssl_host_matches_name(const tsi_peer *peer, const char *peer_name) {