This is an automated email from the ASF dual-hosted git repository.

maskit pushed a commit to branch quic-latest
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/quic-latest by this push:
     new ba137ce  Fix a use of wrong key_len
ba137ce is described below

commit ba137ce1355a88e332db6e89b37d545fd861a708
Author: Masakazu Kitajo <mas...@apache.org>
AuthorDate: Wed Feb 27 11:42:55 2019 +0900

    Fix a use of wrong key_len
---
 iocore/net/quic/QUICTLS.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/iocore/net/quic/QUICTLS.cc b/iocore/net/quic/QUICTLS.cc
index 425a4f5..7852596 100644
--- a/iocore/net/quic/QUICTLS.cc
+++ b/iocore/net/quic/QUICTLS.cc
@@ -148,7 +148,7 @@ QUICTLS::initialize_key_materials(QUICConnectionId cid)
 
   this->_print_km("initial - server", server_key_for_hp, 
server_key_for_hp_len, server_key, server_key_len, server_iv,
                   *server_iv_len);
-  this->_print_km("initial - client", client_key_for_hp, 
client_key_for_hp_len, client_key, server_key_len, client_iv,
+  this->_print_km("initial - client", client_key_for_hp, 
client_key_for_hp_len, client_key, client_key_len, client_iv,
                   *client_iv_len);
 
   return 1;

Reply via email to