Commit a9de0a9f authored by Phil Crump's avatar Phil Crump Committed by Daniel Stenberg
Browse files

docs/CURLOPT_SSLVERSION.3: Correct define name in example

Closes #1509
parent 59cc0234
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -79,7 +79,7 @@ if(curl) {
  curl_easy_setopt(curl, CURLOPT_URL, "https://example.com");

  /* ask libcurl to use TLS version 1.1 or later */
  curl_easy_setopt(curl, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1.1 |
  curl_easy_setopt(curl, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1_1 |
                   CURL_SSLVERSION_MAX_DEFAULT);

  /* Perform the request */