X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libtest%2Fhttp.cc;h=0af12925f1d730b8b7a04d733d31577b9cf3c9b0;hb=00a8f6f7d315dc3fce0b0e5a1987c8663488ae1c;hp=d7faf19d90d44508feea535e04ff565d5b26f158;hpb=9139975f5fe7895259645117b1e0e9a6cb9c27cc;p=awesomized%2Flibmemcached diff --git a/libtest/http.cc b/libtest/http.cc index d7faf19d..0af12925 100644 --- a/libtest/http.cc +++ b/libtest/http.cc @@ -96,6 +96,8 @@ extern "C" size_t static void init(CURL *curl, const std::string& url) { + (void)curl; + (void)url; if (HAVE_LIBCURL) { #if defined(HAVE_LIBCURL) && HAVE_LIBCURL @@ -132,7 +134,7 @@ bool GET::execute() curl_easy_cleanup(curl); - return retref == CURLE_OK; + return bool(retref == CURLE_OK); #endif } @@ -155,6 +157,8 @@ bool POST::execute() curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, _response); curl_easy_cleanup(curl); + + return bool(retref == CURLE_OK); #endif }