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 2015/03/12 23:44:48 UTC

trafficserver git commit: TS-3437: Make DH params configurable: fix typo

Repository: trafficserver
Updated Branches:
  refs/heads/master b711dd38a -> c737a859a


TS-3437: Make DH params configurable: fix typo


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

Branch: refs/heads/master
Commit: c737a859aee50ad1331bcaf41da832aae8041da3
Parents: b711dd3
Author: Brian Geffon <br...@apache.org>
Authored: Thu Mar 12 15:44:38 2015 -0700
Committer: Brian Geffon <br...@apache.org>
Committed: Thu Mar 12 15:44:38 2015 -0700

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


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/c737a859/iocore/net/SSLConfig.cc
----------------------------------------------------------------------
diff --git a/iocore/net/SSLConfig.cc b/iocore/net/SSLConfig.cc
index 1e1c0df..dc78020 100644
--- a/iocore/net/SSLConfig.cc
+++ b/iocore/net/SSLConfig.cc
@@ -160,7 +160,7 @@ SSLConfigParams::initialize()
   REC_ReadConfigStringAlloc(cipherSuite, "proxy.config.ssl.server.cipher_suite");
   REC_ReadConfigStringAlloc(client_cipherSuite, "proxy.config.ssl.client.cipher_suite");
   dhparamsFile = RecConfigReadConfigPath("proxy.config.ssl.server.dhparams_file");
-  REC_ReadConfigInt32(enable_dhparams, "proxy.config.ssl.client.enable_dhparams");
+  REC_ReadConfigInt32(enable_dhparams, "proxy.config.ssl.server.enable_dhparams");
 
   int options;
   int client_ssl_options;