Repository: trafficserver Updated Branches: refs/heads/master 1f359d28a -> 3d721ea9d
TS-2709 Fix indentation per clang-format Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/3d721ea9 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/3d721ea9 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/3d721ea9 Branch: refs/heads/master Commit: 3d721ea9d977764d2807e0a776ce0fc4ec9c8e6e Parents: 1f359d2 Author: Leif Hedstrom <[email protected]> Authored: Sun Mar 29 20:00:24 2015 -0600 Committer: Leif Hedstrom <[email protected]> Committed: Sun Mar 29 20:00:27 2015 -0600 ---------------------------------------------------------------------- iocore/net/SSLNetVConnection.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/3d721ea9/iocore/net/SSLNetVConnection.cc ---------------------------------------------------------------------- diff --git a/iocore/net/SSLNetVConnection.cc b/iocore/net/SSLNetVConnection.cc index b0dd272..5884ed6 100644 --- a/iocore/net/SSLNetVConnection.cc +++ b/iocore/net/SSLNetVConnection.cc @@ -762,7 +762,7 @@ SSLNetVConnection::SSLNetVConnection() { } -void +void SSLNetVConnection::do_io_close(int lerrno) { if (this->ssl != NULL && sslHandShakeComplete) { @@ -779,7 +779,7 @@ SSLNetVConnection::do_io_close(int lerrno) // If the peer has already sent a FIN, don't bother with the shutdown // They will just send us a RST for our troubles - // This test is not foolproof. The client's fin could be on the wire + // This test is not foolproof. The client's fin could be on the wire // at the same time we send the close-notify. If so, the client will likely // send RST anyway char c; @@ -788,7 +788,7 @@ SSLNetVConnection::do_io_close(int lerrno) if (x != 0) { // Send the close-notify int ret = SSL_shutdown(ssl); - Debug("ssl-shutdown", "SSL_shutdown %s", (ret)?"success":"failed"); + Debug("ssl-shutdown", "SSL_shutdown %s", (ret) ? "success" : "failed"); } } // Go on and do the unix socket cleanups
