mirror of
https://github.com/nginx/nginx.git
synced 2025-02-25 18:55:26 -06:00
nginx-0.4.4-RELEASE
fix msvc build failure introduced by previous commit
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user