浏览代码

Removed "Content-Type: text/plain" header from send_http_error() response.

Sergey Lyubka 12 年之前
父节点
当前提交
1e632d3215
共有 1 个文件被更改,包括 0 次插入1 次删除
  1. 0 1
      mongoose.c

+ 0 - 1
mongoose.c

@@ -900,7 +900,6 @@ static void send_http_error(struct mg_connection *conn, int status,
     DEBUG_TRACE(("[%s]", buf));
     DEBUG_TRACE(("[%s]", buf));
 
 
     mg_printf(conn, "HTTP/1.1 %d %s\r\n"
     mg_printf(conn, "HTTP/1.1 %d %s\r\n"
-              "Content-Type: text/plain\r\n"
               "Content-Length: %d\r\n"
               "Content-Length: %d\r\n"
               "Connection: %s\r\n\r\n", status, reason, len,
               "Connection: %s\r\n\r\n", status, reason, len,
               suggest_connection_header(conn));
               suggest_connection_header(conn));