You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sc...@apache.org on 2005/08/15 19:16:52 UTC

svn commit: r232836 - /httpd/httpd/branches/1.3.x/src/support/ab.c

Author: sctemme
Date: Mon Aug 15 10:16:50 2005
New Revision: 232836

URL: http://svn.apache.org/viewcvs?rev=232836&view=rev
Log:
Make ab negotiate the highest protocol version available. PR 33110

Modified:
    httpd/httpd/branches/1.3.x/src/support/ab.c

Modified: httpd/httpd/branches/1.3.x/src/support/ab.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/1.3.x/src/support/ab.c?rev=232836&r1=232835&r2=232836&view=diff
==============================================================================
--- httpd/httpd/branches/1.3.x/src/support/ab.c (original)
+++ httpd/httpd/branches/1.3.x/src/support/ab.c Mon Aug 15 10:16:50 2005
@@ -1655,7 +1655,7 @@
 
 #ifdef USE_SSL
     SSL_library_init();
-    if (!(ctx = SSL_CTX_new(SSLv2_client_method()))) {
+    if (!(ctx = SSL_CTX_new(SSLv23_client_method()))) {
 	fprintf(stderr, "Could not init SSL CTX: ");
 	ERR_print_errors_fp(stderr);
 	exit(1);