summaryrefslogtreecommitdiffhomepage
path: root/src/http/ngx_http_variables.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-07-22 08:47:45 +0000
committerIgor Sysoev <igor@sysoev.ru>2007-07-22 08:47:45 +0000
commit64bb1e34d24f805a278da05e55efd449be76e57f (patch)
treebf4555e728d672cf86c58f163eb7e1e8f3b0bdb1 /src/http/ngx_http_variables.c
parentfbd3b2d727af9cc308d0a0c82812d5181f9a477e (diff)
downloadnginx-64bb1e34d24f805a278da05e55efd449be76e57f.tar.gz
nginx-64bb1e34d24f805a278da05e55efd449be76e57f.tar.bz2
r1306, r1307, r1308, r1309, r1310, r1311, r1322, r1325 merge:
Sun Studio related fixes
Diffstat (limited to 'src/http/ngx_http_variables.c')
-rw-r--r--src/http/ngx_http_variables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_variables.c b/src/http/ngx_http_variables.c
index 0bd6b7ec6..6316b3d58 100644
--- a/src/http/ngx_http_variables.c
+++ b/src/http/ngx_http_variables.c
@@ -501,7 +501,7 @@ ngx_http_variable_request_set_size(ngx_http_request_t *r,
ssize_t s, *sp;
ngx_str_t val;
- val.len = v->len & 0xffff;
+ val.len = v->len;
val.data = v->data;
s = ngx_parse_size(&val);