diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2024-03-22 14:51:14 +0400 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2024-03-22 14:51:14 +0400 |
commit | ae1948aa40c48a97f2e171acb84eb04bfcbe1307 (patch) | |
tree | 143421f76110e59727d49328125a94b6f4938bd9 /src/http/modules | |
parent | e4a062b18699c18f570c736e7cbb4245b0659bb6 (diff) | |
download | nginx-ae1948aa40c48a97f2e171acb84eb04bfcbe1307.tar.gz nginx-ae1948aa40c48a97f2e171acb84eb04bfcbe1307.zip |
Overhauled some diagnostic messages akin to 1b05b9bbcebf.
Diffstat (limited to 'src/http/modules')
-rw-r--r-- | src/http/modules/ngx_http_referer_module.c | 2 | ||||
-rw-r--r-- | src/http/modules/ngx_http_ssi_filter_module.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/http/modules/ngx_http_referer_module.c b/src/http/modules/ngx_http_referer_module.c index 599dd3a12..11a681b84 100644 --- a/src/http/modules/ngx_http_referer_module.c +++ b/src/http/modules/ngx_http_referer_module.c @@ -631,7 +631,7 @@ ngx_http_add_regex_referer(ngx_conf_t *cf, ngx_http_referer_conf_t *rlcf, #else ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, - "the using of the regex \"%V\" requires PCRE library", + "using regex \"%V\" requires PCRE library", name); return NGX_ERROR; diff --git a/src/http/modules/ngx_http_ssi_filter_module.c b/src/http/modules/ngx_http_ssi_filter_module.c index e7601b83e..0b84bd322 100644 --- a/src/http/modules/ngx_http_ssi_filter_module.c +++ b/src/http/modules/ngx_http_ssi_filter_module.c @@ -2001,7 +2001,7 @@ ngx_http_ssi_regex_match(ngx_http_request_t *r, ngx_str_t *pattern, #else ngx_log_error(NGX_LOG_ALERT, r->connection->log, 0, - "the using of the regex \"%V\" in SSI requires PCRE library", + "using regex \"%V\" in SSI requires PCRE library", pattern); return NGX_HTTP_SSI_ERROR; |