summaryrefslogtreecommitdiffstats
path: root/src/dom/io/httpclient.cpp
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2009-11-29 15:33:18 +0000
committerKrzysztof KosiƄski <tweenk.pl@gmail.com>2009-11-29 15:33:18 +0000
commit31bb8269c26a781036448ed8f8cd93cc84fb2118 (patch)
treec714ce9b38e9b75680b61e7e0992aa2ab40e2584 /src/dom/io/httpclient.cpp
parentDeprecation warning fix on xcf export (diff)
downloadinkscape-31bb8269c26a781036448ed8f8cd93cc84fb2118.tar.gz
inkscape-31bb8269c26a781036448ed8f8cd93cc84fb2118.zip
First GSoC node tool commit to Bazaar
(bzr r8846.1.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;
}