comparison src/core/ngx_string.h @ 1714:6b81bbc36eaf stable-0.5

r1566 merge: fix English grammar
author Igor Sysoev <igor@sysoev.ru>
date Wed, 12 Dec 2007 16:57:36 +0000
parents ca6845b19113
children bef67c6abbe7
comparison
equal deleted inserted replaced
1713:389aeafc3b84 1714:6b81bbc36eaf
26 26
27 typedef struct { 27 typedef struct {
28 unsigned len:29; 28 unsigned len:29;
29 29
30 unsigned valid:1; 30 unsigned valid:1;
31 unsigned no_cachable:1; 31 unsigned no_cacheable:1;
32 unsigned not_found:1; 32 unsigned not_found:1;
33 33
34 u_char *data; 34 u_char *data;
35 } ngx_variable_value_t; 35 } ngx_variable_value_t;
36 36