You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by br...@apache.org on 2014/07/17 19:24:16 UTC

[3/3] git commit: TS-1146: consistent formatting for log messages

TS-1146: consistent formatting for log messages


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

Branch: refs/heads/master
Commit: 23406cedff31a3bfeb588fd04b581e7a4e5a578c
Parents: e6e0089
Author: Alexey Ivanov <ai...@linkedin.com>
Authored: Fri Jul 4 21:12:05 2014 -0700
Committer: Brian Geffon <br...@apache.org>
Committed: Thu Jul 17 10:23:52 2014 -0700

----------------------------------------------------------------------
 iocore/net/SSLUtils.cc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/23406ced/iocore/net/SSLUtils.cc
----------------------------------------------------------------------
diff --git a/iocore/net/SSLUtils.cc b/iocore/net/SSLUtils.cc
index c8efae8..abb6a05 100644
--- a/iocore/net/SSLUtils.cc
+++ b/iocore/net/SSLUtils.cc
@@ -1507,7 +1507,8 @@ ssl_callback_session_ticket(
     RAND_pseudo_bytes(iv, EVP_MAX_IV_LENGTH);
     EVP_EncryptInit_ex(cipher_ctx, EVP_aes_128_cbc(), NULL, ssl_ticket_key->aes_key, iv);
     HMAC_Init_ex(hctx, ssl_ticket_key->hmac_secret, 16, evp_md_func, NULL);
-    Debug("ssl", "create ticket for a new session");
+
+    Debug("ssl", "create ticket for a new session.");
     SSL_INCREMENT_DYN_STAT(ssl_total_tickets_created_stat);
     return 0;
   } else if (enc == 0) {