TCF Agent: fixed regression in HTTP server code
diff --git a/agent/tcf/http/http.c b/agent/tcf/http/http.c
index 03d03f5..ea415da 100644
--- a/agent/tcf/http/http.c
+++ b/agent/tcf/http/http.c
@@ -436,7 +436,7 @@
     if (con->page_hdrs) {
         HttpParam * h = con->page_hdrs;
         while (h != NULL) {
-            if (strcmp(h->name, "Content-Type")) {
+            if (strcmp(h->name, "Content-Type") == 0) {
                 con->sse = strcmp(h->value, "text/event-stream") == 0;
                 content_type = 1;
             }