From 24bffd6b8467cd91764514e8f666fe68849dfc45 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Tue, 19 Apr 2016 01:25:45 +0200 Subject: [PATCH] Remove some debugging output. --- httpd.cpp | 3 --- 1 file changed, 3 deletions(-) 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; } -- 2.39.2