Merge 0.9->trunk
[prosody.git] / net / http / server.lua
index dec7da1999c22c4cb6ae57ae83512b06bef369d7..0f379e96c625e726f554184e8735decb879a7d6b 100644 (file)
@@ -168,7 +168,7 @@ function handle_request(conn, request, finish_cb)
        local conn_header = request.headers.connection;
        conn_header = conn_header and ","..conn_header:gsub("[ \t]", ""):lower().."," or ""
        local httpversion = request.httpversion
-       local persistent = conn_header:find(",Keep-Alive,", 1, true)
+       local persistent = conn_header:find(",keep-alive,", 1, true)
                or (httpversion == "1.1" and not conn_header:find(",close,", 1, true));
 
        local response_conn_header;