From: rouzier Date: Mon, 15 Jan 2018 16:06:38 +0000 (-0500) Subject: CURLOPT_TCP_NODELAY.3: fix typo X-Git-Tag: curl-7_58_0~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=945df74101140a336699f1de6616302d49ca7be8;p=thirdparty%2Fcurl.git CURLOPT_TCP_NODELAY.3: fix typo Closes #2239 --- diff --git a/docs/libcurl/opts/CURLOPT_TCP_NODELAY.3 b/docs/libcurl/opts/CURLOPT_TCP_NODELAY.3 index 701e315020..bbfa6f3eef 100644 --- a/docs/libcurl/opts/CURLOPT_TCP_NODELAY.3 +++ b/docs/libcurl/opts/CURLOPT_TCP_NODELAY.3 @@ -52,7 +52,7 @@ CURL *curl = curl_easy_init(); if(curl) { curl_easy_setopt(curl, CURLOPT_URL, "http://example.com"); /* disable Nagle */ - curl_easy_setopt(curl, CURLOPT_TCP_FASTOPEN, 0); + curl_easy_setopt(curl, CURLOPT_TCP_NODELAY, 0); curl_easy_perform(curl); } .fi