X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;ds=sidebyside;f=libtest%2Fhttp.cc;h=0af12925f1d730b8b7a04d733d31577b9cf3c9b0;hb=641b3d37fe96eadfea520035cc1703328163e357;hp=9933e12f54eb4ac463c964d3e7e69dbd09b39db4;hpb=f47caf2833675cce0b62a6e4ffd6764c1490a8b4;p=awesomized%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 }