Updated Branches: refs/heads/master d42a1a9d6 -> 973749330
clean out references to SSLeay TS-2393: Use canonical OpenSSL function names rather than old compatibility defines Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/97374933 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/97374933 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/97374933 Branch: refs/heads/master Commit: 973749330dc65fc57c60e3f77ded42a8abdbeec3 Parents: d42a1a9 Author: Igor GaliÄ <[email protected]> Authored: Mon Nov 25 09:15:07 2013 +0100 Committer: Igor GaliÄ <[email protected]> Committed: Mon Nov 25 09:15:07 2013 +0100 ---------------------------------------------------------------------- tools/http_load/http_load.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/97374933/tools/http_load/http_load.c ---------------------------------------------------------------------- diff --git a/tools/http_load/http_load.c b/tools/http_load/http_load.c index 0c7a072..8c86029 100644 --- a/tools/http_load/http_load.c +++ b/tools/http_load/http_load.c @@ -1180,7 +1180,7 @@ handle_connect(int cnum, struct timeval *nowP, int double_check) /* Make SSL connection. */ if (ssl_ctx == (SSL_CTX *) 0) { SSL_load_error_strings(); - SSLeay_add_ssl_algorithms(); + SSL_library_init(); ssl_ctx = SSL_CTX_new(SSLv23_client_method()); /* For some reason this does not seem to work, but indications are that it should... Maybe something with how we create connections? TODO: Fix it... */
