summaryrefslogtreecommitdiffstats
path: root/src/dom/io/httpclient.cpp
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2009-11-29 19:05:54 +0000
committerKrzysztof KosiƄski <tweenk.pl@gmail.com>2009-11-29 19:05:54 +0000
commit2642ea862ab9749236d41ca96f109b46e27af9ce (patch)
treec714ce9b38e9b75680b61e7e0992aa2ab40e2584 /src/dom/io/httpclient.cpp
parentDeprecation warning fix on xcf export (diff)
parentFirst GSoC node tool commit to Bazaar (diff)
downloadinkscape-2642ea862ab9749236d41ca96f109b46e27af9ce.tar.gz
inkscape-2642ea862ab9749236d41ca96f109b46e27af9ce.zip
GSoC node tool
(bzr r8846.2.1)
Diffstat (limited to 'src/dom/io/httpclient.cpp')
-rw-r--r--src/dom/io/httpclient.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dom/io/httpclient.cpp b/src/dom/io/httpclient.cpp
index 4245d71f2..97c8575cf 100644
--- a/src/dom/io/httpclient.cpp
+++ b/src/dom/io/httpclient.cpp
@@ -73,7 +73,7 @@ bool HttpClient::openGet(const URI &uri)
socket.enableSSL(true);
else
{
- printf("Bad proto scheme:%d\n", uri.getScheme());
+ //printf("Bad proto scheme:%d\n", uri.getScheme());
return false;
}
@@ -106,7 +106,7 @@ bool HttpClient::openGet(const URI &uri)
{
if (!socket.readLine(msg))
return false;
- printf("header:'%s'\n", msg.c_str());
+ //printf("header:'%s'\n", msg.c_str());
if (msg.size() < 1)
break;
}