summaryrefslogtreecommitdiffhomepage
path: root/src/http/modules/ngx_http_geo_module.c
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@nginx.com>2012-04-12 19:35:41 +0000
committerRuslan Ermilov <ru@nginx.com>2012-04-12 19:35:41 +0000
commit43d2b1c04562dbd7c651d8d135d93bb8116b9133 (patch)
treea2e14da5559f732dfe50a6bc7e78dae02080688b /src/http/modules/ngx_http_geo_module.c
parente6724ebe54f3cbe1869cf71a011db5f06e43742d (diff)
downloadnginx-43d2b1c04562dbd7c651d8d135d93bb8116b9133.tar.gz
nginx-43d2b1c04562dbd7c651d8d135d93bb8116b9133.tar.bz2
Fixed grammar in error messages.
Diffstat (limited to 'src/http/modules/ngx_http_geo_module.c')
-rw-r--r--src/http/modules/ngx_http_geo_module.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/http/modules/ngx_http_geo_module.c b/src/http/modules/ngx_http_geo_module.c
index 1d7599e55..30b0e35a9 100644
--- a/src/http/modules/ngx_http_geo_module.c
+++ b/src/http/modules/ngx_http_geo_module.c
@@ -566,7 +566,7 @@ ngx_http_geo_range(ngx_conf_t *cf, ngx_http_geo_conf_ctx_t *ctx,
if (ctx->binary_include) {
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
- "binary geo range base \"%s\" may not be mixed with usual entries",
+ "binary geo range base \"%s\" cannot be mixed with usual entries",
ctx->include_name.data);
return NGX_CONF_ERROR;
}
@@ -1195,7 +1195,7 @@ ngx_http_geo_include_binary_base(ngx_conf_t *cf, ngx_http_geo_conf_ctx_t *ctx,
if (ctx->outside_entries) {
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
- "binary geo range base \"%s\" may not be mixed with usual entries",
+ "binary geo range base \"%s\" cannot be mixed with usual entries",
name->data);
rc = NGX_ERROR;
goto done;
@@ -1203,7 +1203,7 @@ ngx_http_geo_include_binary_base(ngx_conf_t *cf, ngx_http_geo_conf_ctx_t *ctx,
if (ctx->binary_include) {
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
- "second binary geo range base \"%s\" may not be mixed with \"%s\"",
+ "second binary geo range base \"%s\" cannot be mixed with \"%s\"",
name->data, ctx->include_name.data);
rc = NGX_ERROR;
goto done;