X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libtest%2Fhttp.cc;h=0af12925f1d730b8b7a04d733d31577b9cf3c9b0;hb=00a8f6f7d315dc3fce0b0e5a1987c8663488ae1c;hp=9933e12f54eb4ac463c964d3e7e69dbd09b39db4;hpb=aacf5ba18fa98145d95f7a0567f0b32306fac1aa;p=m6w6%2Flibmemcached diff --git a/libtest/http.cc b/libtest/http.cc index 9933e12f..0af12925 100644 --- a/libtest/http.cc +++ b/libtest/http.cc @@ -134,7 +134,7 @@ bool GET::execute() curl_easy_cleanup(curl); - return retref == CURLE_OK; + return bool(retref == CURLE_OK); #endif } @@ -157,6 +157,8 @@ bool POST::execute() curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, _response); curl_easy_cleanup(curl); + + return bool(retref == CURLE_OK); #endif }