From 6f134cc2751846c7fb64e8862dfe8d57185872af Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Tue, 23 May 2006 14:54:58 +0000 Subject: nginx-0.3.47-RELEASE import *) Feature: the "upstream" directive. *) Change: now the "\" escape symbol in the "\"" and "\'" pairs in the SSI command is always removed. --- src/core/ngx_parse.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/core/ngx_parse.c') diff --git a/src/core/ngx_parse.c b/src/core/ngx_parse.c index f8e5f6c2e..28e5d96c1 100644 --- a/src/core/ngx_parse.c +++ b/src/core/ngx_parse.c @@ -50,10 +50,10 @@ ngx_parse_size(ngx_str_t *line) ngx_int_t ngx_parse_time(ngx_str_t *line, ngx_int_t sec) { - size_t len; - u_char *start, last; - ngx_int_t value, total, scale; - ngx_uint_t max, i; + size_t len; + u_char *start, last; + ngx_int_t value, total, scale; + ngx_uint_t max, i; enum { st_start = 0, st_year, -- cgit