Repository: trafficserver
Updated Branches:
  refs/heads/5.3.x 3210351f3 -> 7ecccf3e7


TS-2709 Fix indentation per clang-format

(cherry picked from commit 3d721ea9d977764d2807e0a776ce0fc4ec9c8e6e)


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/7ecccf3e
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/7ecccf3e
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/7ecccf3e

Branch: refs/heads/5.3.x
Commit: 7ecccf3e75cd1278528d772ca4c4531ad09528b7
Parents: 3210351
Author: Leif Hedstrom <[email protected]>
Authored: Sun Mar 29 20:00:24 2015 -0600
Committer: Phil Sorber <[email protected]>
Committed: Sun Mar 29 20:05:19 2015 -0600

----------------------------------------------------------------------
 iocore/net/SSLNetVConnection.cc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/7ecccf3e/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

Reply via email to