Skip to content
This repository has been archived by the owner on Apr 16, 2019. It is now read-only.

Commit

Permalink
http.c: Fix comments that refer to long options. (We don't use them)
Browse files Browse the repository at this point in the history
  • Loading branch information
merlino authored and gianm committed Jan 17, 2012
1 parent e973819 commit c626bfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions c/http.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ CURL *make_curl_handle() {
}

if(cacert) {
/* --cacert */
/* -C */
res = curl_easy_setopt( curl, CURLOPT_CAINFO, cacert );
if( res != CURLE_OK ) {
fprintf(stderr, "--cacert: %s\n", curl_easy_strerror(res));
Expand All @@ -120,7 +120,7 @@ CURL *make_curl_handle() {
}

if(be_insecure) {
/* --insecure */
/* -K */
curl_easy_setopt( curl, CURLOPT_SSL_VERIFYPEER, 0 );
curl_easy_setopt( curl, CURLOPT_SSL_VERIFYHOST, 0 );
}
Expand Down

0 comments on commit c626bfd

Please sign in to comment.