Skip to content

Commit

Permalink
[src] Fixed format output ending of symbol "\n" for test.
Browse files Browse the repository at this point in the history
  • Loading branch information
rryqszq4 committed Nov 9, 2018
1 parent 1a7d7b4 commit 785dbf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ngx_http_sqlite_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ ngx_http_sqlite_content_query_core(ngx_http_request_t *r, ngx_http_sqlite_result
{
r->headers_out.status = NGX_HTTP_INTERNAL_SERVER_ERROR;
}
ngx_http_sqlite_echo(r, "\n\n", 2);
ngx_http_sqlite_echo(r, "\n", 1);
while (*rest == ' ' || *rest == '\n')
{
rest += 1;
Expand Down

0 comments on commit 785dbf1

Please sign in to comment.