CURLINFO_LOCAL_PORT.3: fix typo

This commit is contained in:
Jay Satiro 2017-03-16 18:18:49 -04:00
parent 49f7b13536
commit f7b3914c55

View File

@ -40,7 +40,7 @@ All
curl = curl_easy_init();
if(curl) {
curl_easy_setopt(curl, CURLOPT_URL, "http://example.come/");
curl_easy_setopt(curl, CURLOPT_URL, "http://example.com/");
res = curl_easy_perform(curl);
if(CURLE_OK == res) {