You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
529 B

  1. --- a/support/ab.c
  2. +++ b/support/ab.c
  3. @@ -2232,8 +2232,10 @@ int main(int argc, const char * const ar
  4. } else if (strncasecmp(optarg, "SSL2", 4) == 0) {
  5. meth = SSLv2_client_method();
  6. #endif
  7. +#ifndef OPENSSL_NO_SSL3_METHOD
  8. } else if (strncasecmp(optarg, "SSL3", 4) == 0) {
  9. meth = SSLv3_client_method();
  10. +#endif
  11. #ifdef HAVE_TLSV1_X
  12. } else if (strncasecmp(optarg, "TLS1.1", 6) == 0) {
  13. meth = TLSv1_1_client_method();