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/stream/ngx_stream_core_module.c | |
parent | e4a062b18699c18f570c736e7cbb4245b0659bb6 (diff) | |
download | nginx-ae1948aa40c48a97f2e171acb84eb04bfcbe1307.tar.gz nginx-ae1948aa40c48a97f2e171acb84eb04bfcbe1307.zip |
Overhauled some diagnostic messages akin to 1b05b9bbcebf.
Diffstat (limited to 'src/stream/ngx_stream_core_module.c')
-rw-r--r-- | src/stream/ngx_stream_core_module.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stream/ngx_stream_core_module.c b/src/stream/ngx_stream_core_module.c index 31a34aee5..67129b5ed 100644 --- a/src/stream/ngx_stream_core_module.c +++ b/src/stream/ngx_stream_core_module.c @@ -1036,7 +1036,7 @@ ngx_stream_core_listen(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) continue; #else ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, - "bind ipv6only is not supported " + "ipv6only is not supported " "on this platform"); return NGX_CONF_ERROR; #endif @@ -1164,7 +1164,7 @@ ngx_stream_core_listen(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) } ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, - "the invalid \"%V\" parameter", &value[i]); + "invalid parameter \"%V\"", &value[i]); return NGX_CONF_ERROR; } |