ENH: use 0 not FALSE

This commit is contained in:
Bill Hoffman 2009-03-31 15:30:36 -04:00
parent 1f0835b5eb
commit 4c3718d7b6
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ bool cmCTestSubmitHandler::SubmitUsingHTTP(const cmStdString& localprefix,
curl = curl_easy_init();
if(curl)
{
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0);
// Using proxy
if ( this->HTTPProxyType > 0 )