You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2014/12/27 22:24:31 UTC

trafficserver git commit: TS-3261 Fix indentation

Repository: trafficserver
Updated Branches:
  refs/heads/master b9599cada -> dfd4d2928


TS-3261 Fix indentation


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

Branch: refs/heads/master
Commit: dfd4d29286a83ad8a1261b492f503a239b42b9a0
Parents: b9599ca
Author: Leif Hedstrom <zw...@apache.org>
Authored: Sat Dec 27 14:24:25 2014 -0700
Committer: Leif Hedstrom <zw...@apache.org>
Committed: Sat Dec 27 14:24:25 2014 -0700

----------------------------------------------------------------------
 iocore/net/SSLInternal.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/dfd4d292/iocore/net/SSLInternal.cc
----------------------------------------------------------------------
diff --git a/iocore/net/SSLInternal.cc b/iocore/net/SSLInternal.cc
index 16e1be9..b6d657a 100644
--- a/iocore/net/SSLInternal.cc
+++ b/iocore/net/SSLInternal.cc
@@ -33,7 +33,7 @@ void
 SSL_set_rbio(SSLNetVConnection *sslvc, BIO *rbio)
 {
   if (sslvc->ssl->rbio != NULL) {
-    BIO_free (sslvc->ssl->rbio);
+    BIO_free(sslvc->ssl->rbio);
   }
   sslvc->ssl->rbio = rbio;
 }