aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_variables.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2006-10-02 11:44:21 +0000
committerIgor Sysoev <igor@sysoev.ru>2006-10-02 11:44:21 +0000
commit5e05cb4a196d14465c1f16d35eb65f33c8ac7b9f (patch)
treecfc11e1a20484960042ceacb47299295f1e2b0e1 /src/http/ngx_http_variables.c
parent49c9ea0e262e4f65d47f5cedd5b412d7babf9200 (diff)
downloadnginx-release-0.4.4.tar.gz
nginx-release-0.4.4.zip
nginx-0.4.4-RELEASErelease-0.4.4
fix msvc build failure introduced by previous commit
Diffstat (limited to 'src/http/ngx_http_variables.c')
-rw-r--r--src/http/ngx_http_variables.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/ngx_http_variables.c b/src/http/ngx_http_variables.c
index 7dc9cc146..e6db0b7c6 100644
--- a/src/http/ngx_http_variables.c
+++ b/src/http/ngx_http_variables.c
@@ -786,7 +786,7 @@ ngx_http_variable_scheme(ngx_http_request_t *r,
v->valid = 1;
v->no_cachable = 0;
v->not_found = 0;
- v->data = "https";
+ v->data = (u_char *) "https";
return NGX_OK;
}
@@ -797,7 +797,7 @@ ngx_http_variable_scheme(ngx_http_request_t *r,
v->valid = 1;
v->no_cachable = 0;
v->not_found = 0;
- v->data = "http";
+ v->data = (u_char *) "http";
return NGX_OK;
}