Skip to content

Commit

Permalink
* Removed strange characters from file.
Browse files Browse the repository at this point in the history
  • Loading branch information
António P. P. Almeida committed Mar 13, 2013
1 parent 6e79835 commit a5395ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ngx_http_hello_world_module.c
Expand Up @@ -101,7 +101,7 @@ static ngx_int_t ngx_http_hello_world_handler(ngx_http_request_t *r)
ngx_chain_t out;

/* Set the Content-Type header. */
r->headers_out.content_type.len = sizeof("text/plain") 1;
r->headers_out.content_type.len = sizeof("text/plain") - 1;
r->headers_out.content_type.data = (u_char *) "text/plain";

/* Allocate a new buffer for sending out the reply. */
Expand Down

0 comments on commit a5395ff

Please sign in to comment.