aboutsummaryrefslogtreecommitdiff
path: root/src/http/modules/ngx_http_browser_module.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-10-14 18:56:15 +0000
committerIgor Sysoev <igor@sysoev.ru>2007-10-14 18:56:15 +0000
commit2d3f3f6eb682a407700a7fcadc67ad8e703249da (patch)
treeca69b0bb63042eb0375aba85340c6cd28358d0ab /src/http/modules/ngx_http_browser_module.c
parent47a1ebb05086c82141b19377bbaafa9d68414281 (diff)
downloadnginx-2d3f3f6eb682a407700a7fcadc67ad8e703249da.tar.gz
nginx-2d3f3f6eb682a407700a7fcadc67ad8e703249da.zip
fix English grammar
Diffstat (limited to 'src/http/modules/ngx_http_browser_module.c')
-rw-r--r--src/http/modules/ngx_http_browser_module.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/http/modules/ngx_http_browser_module.c b/src/http/modules/ngx_http_browser_module.c
index 98df6c575..083375ba1 100644
--- a/src/http/modules/ngx_http_browser_module.c
+++ b/src/http/modules/ngx_http_browser_module.c
@@ -397,7 +397,7 @@ ngx_http_browser_add_variable(ngx_conf_t *cf)
for (var = ngx_http_browsers; var->name.len; var++) {
- v = ngx_http_add_variable(cf, &var->name, NGX_HTTP_VAR_CHANGABLE);
+ v = ngx_http_add_variable(cf, &var->name, NGX_HTTP_VAR_CHANGEABLE);
if (v == NULL) {
return NGX_ERROR;
}
@@ -673,7 +673,7 @@ ngx_http_modern_browser_value(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
bcf->modern_browser_value->len = value[1].len;
bcf->modern_browser_value->valid = 1;
- bcf->modern_browser_value->no_cachable = 0;
+ bcf->modern_browser_value->no_cacheable = 0;
bcf->modern_browser_value->not_found = 0;
bcf->modern_browser_value->data = value[1].data;
@@ -698,7 +698,7 @@ ngx_http_ancient_browser_value(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
bcf->ancient_browser_value->len = value[1].len;
bcf->ancient_browser_value->valid = 1;
- bcf->ancient_browser_value->no_cachable = 0;
+ bcf->ancient_browser_value->no_cacheable = 0;
bcf->ancient_browser_value->not_found = 0;
bcf->ancient_browser_value->data = value[1].data;