Tweak indentation

This commit is contained in:
Nick Mathewson 2013-10-10 16:10:50 -04:00
parent 206124a23c
commit 4464bd2396

4
http.c
View File

@ -553,10 +553,10 @@ evhttp_make_header_response(struct evhttp_connection *evcon,
if (evhttp_response_needs_body(req)) { if (evhttp_response_needs_body(req)) {
if (evhttp_find_header(req->output_headers, if (evhttp_find_header(req->output_headers,
"Content-Type") == NULL "Content-Type") == NULL
&& evcon->http_server->default_content_type) { && evcon->http_server->default_content_type) {
evhttp_add_header(req->output_headers, evhttp_add_header(req->output_headers,
"Content-Type", "Content-Type",
evcon->http_server->default_content_type); evcon->http_server->default_content_type);
} }
} }