Fixed indentation.
Some lines (incorrectly) had an indentation of 3 or 5, or 7 or 9, or 11 or 13, or 15 or 17 spaces instead of 4, 8, 12, or 16. Fix them. Found with: $ find src -type f | xargs grep -n '^ [^ ]'; $ find src -type f | xargs grep -n '^ [^ *]'; $ find src -type f | xargs grep -n '^ [^ ]'; $ find src -type f | xargs grep -n '^ [^ *]'; $ find src -type f | xargs grep -n '^ [^ +]'; $ find src -type f | xargs grep -n '^ [^ *+]'; $ find src -type f | xargs grep -n '^ [^ +]'; $ find src -type f | xargs grep -n '^ [^ *+]';
This commit is contained in:
@@ -1881,11 +1881,11 @@ nxt_h1p_idle_timeout(nxt_task_t *task, void *obj, void *data)
|
||||
|
||||
|
||||
#define NXT_H1P_IDLE_TIMEOUT \
|
||||
"HTTP/1.1 408 Request Timeout\r\n" \
|
||||
"Server: " NXT_SERVER "\r\n" \
|
||||
"Connection: close\r\n" \
|
||||
"Content-Length: 0\r\n" \
|
||||
"Date: "
|
||||
"HTTP/1.1 408 Request Timeout\r\n" \
|
||||
"Server: " NXT_SERVER "\r\n" \
|
||||
"Connection: close\r\n" \
|
||||
"Content-Length: 0\r\n" \
|
||||
"Date: "
|
||||
|
||||
|
||||
static void
|
||||
|
||||
Reference in New Issue
Block a user