]> git.sesse.net Git - nageru/commitdiff
Remove some debugging output.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Mon, 18 Apr 2016 23:25:45 +0000 (01:25 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Mon, 18 Apr 2016 23:25:45 +0000 (01:25 +0200)
httpd.cpp

index 5226885be2e1e4e4fb76ba7534c9ee58b14fdba4..1e4005453fc5aad0fe02600106f22f85ac7005d3 100644 (file)
--- 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;
        }