Repository: trafficserver Updated Branches: refs/heads/master 5e60704dd -> 027530105
TS-2417 Make the dhparams_file relative to the Layout Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/02753010 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/02753010 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/02753010 Branch: refs/heads/master Commit: 02753010573801a4e1fed47cc2755ae9800fe45d Parents: 5e60704 Author: Leif Hedstrom <[email protected]> Authored: Tue Nov 18 16:33:24 2014 -0700 Committer: Leif Hedstrom <[email protected]> Committed: Tue Nov 18 16:33:24 2014 -0700 ---------------------------------------------------------------------- iocore/net/SSLConfig.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/02753010/iocore/net/SSLConfig.cc ---------------------------------------------------------------------- diff --git a/iocore/net/SSLConfig.cc b/iocore/net/SSLConfig.cc index 64025f1..88f2630 100644 --- a/iocore/net/SSLConfig.cc +++ b/iocore/net/SSLConfig.cc @@ -158,7 +158,7 @@ SSLConfigParams::initialize() REC_ReadConfigInt32(clientCertLevel, "proxy.config.ssl.client.certification_level"); REC_ReadConfigStringAlloc(cipherSuite, "proxy.config.ssl.server.cipher_suite"); REC_ReadConfigStringAlloc(client_cipherSuite, "proxy.config.ssl.client.cipher_suite"); - REC_ReadConfigStringAlloc(dhparamsFile, "proxy.config.ssl.server.dhparams_file"); + dhparamsFile = RecConfigReadConfigPath("proxy.config.ssl.server.dhparams_file"); int options; int client_ssl_options;
