Repository: trafficserver Updated Branches: refs/heads/master fb3bbbd4f -> c17566199
TS-3667: clang-format Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/c1756619 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/c1756619 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/c1756619 Branch: refs/heads/master Commit: c175661990c05e704bcf7e6d41819ff01c0ae4c1 Parents: fb3bbbd Author: Phil Sorber <[email protected]> Authored: Fri Jun 5 09:07:11 2015 -0600 Committer: Phil Sorber <[email protected]> Committed: Fri Jun 5 09:07:11 2015 -0600 ---------------------------------------------------------------------- iocore/net/SSLNetVConnection.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/c1756619/iocore/net/SSLNetVConnection.cc ---------------------------------------------------------------------- diff --git a/iocore/net/SSLNetVConnection.cc b/iocore/net/SSLNetVConnection.cc index 1ea9883..0d9c2a9 100644 --- a/iocore/net/SSLNetVConnection.cc +++ b/iocore/net/SSLNetVConnection.cc @@ -959,13 +959,13 @@ SSLNetVConnection::sslServerHandShakeEvent(int &err) int retval = this->read_raw_data(); if (retval < 0) { if (retval == -EAGAIN) { - // No data at the moment, hang tight - SSLDebugVC(this, "SSL handshake: EAGAIN"); - return SSL_HANDSHAKE_WANT_READ; + // No data at the moment, hang tight + SSLDebugVC(this, "SSL handshake: EAGAIN"); + return SSL_HANDSHAKE_WANT_READ; } else { - // An error, make us go away - SSLDebugVC(this, "SSL handshake error: read_retval=%d", retval); - return EVENT_ERROR; + // An error, make us go away + SSLDebugVC(this, "SSL handshake error: read_retval=%d", retval); + return EVENT_ERROR; } } else if (retval == 0) { // EOF, go away, we stopped in the handshake
