summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/http/curl-get.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sca-cpp/trunk/modules/http/curl-get.cpp')
-rw-r--r--sca-cpp/trunk/modules/http/curl-get.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sca-cpp/trunk/modules/http/curl-get.cpp b/sca-cpp/trunk/modules/http/curl-get.cpp
index 4d5f1837fc..762423bebb 100644
--- a/sca-cpp/trunk/modules/http/curl-get.cpp
+++ b/sca-cpp/trunk/modules/http/curl-get.cpp
@@ -36,7 +36,7 @@ const bool testGet(const string& url, const string& ca = "", const string& cert
CURLSession ch(ca, cert, key);
const failable<value> val = get(url, ch);
assert(hasContent(val));
- cout << val << endl;
+ cout << content(val) << endl;
return true;
}