From: Steinar H. Gunderson Date: Mon, 18 Apr 2016 23:25:45 +0000 (+0200) Subject: Remove some debugging output. X-Git-Tag: 1.3.0~76 X-Git-Url: https://git.sesse.net/?p=nageru;a=commitdiff_plain;h=24bffd6b8467cd91764514e8f666fe68849dfc45 Remove some debugging output. --- diff --git a/httpd.cpp b/httpd.cpp index 5226885..1e40054 100644 --- a/httpd.cpp +++ b/httpd.cpp @@ -57,12 +57,9 @@ int HTTPD::answer_to_connection(MHD_Connection *connection, { // See if the URL ends in “.metacube”. HTTPD::Stream::Framing framing; - printf("url=[%s]\n", url); if (strstr(url, ".metacube") == url + strlen(url) - strlen(".metacube")) { - printf("metacube\n"); framing = HTTPD::Stream::FRAMING_METACUBE; } else { - printf("raw\n"); framing = HTTPD::Stream::FRAMING_RAW; }