aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2009-11-03 13:45:22 +0000
committerIgor Sysoev <igor@sysoev.ru>2009-11-03 13:45:22 +0000
commit39c9f6e487afe946f8a615c6d2da6c7a3a740d04 (patch)
treeebd7e69123eee9b3913a00b6b7a9dcd06d692c64 /src
parent76c941e70b915b4feba8c8c90506a9ed293f408d (diff)
downloadnginx-39c9f6e487afe946f8a615c6d2da6c7a3a740d04.tar.gz
nginx-39c9f6e487afe946f8a615c6d2da6c7a3a740d04.zip
fix directive name in error message: "realip_from" to "set_realip_from"
Diffstat (limited to 'src')
-rw-r--r--src/http/modules/ngx_http_realip_module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_realip_module.c b/src/http/modules/ngx_http_realip_module.c
index c962b516e..e1347027f 100644
--- a/src/http/modules/ngx_http_realip_module.c
+++ b/src/http/modules/ngx_http_realip_module.c
@@ -347,7 +347,7 @@ ngx_http_realip_from(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
if (cidr.family != AF_INET) {
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
- "\"realip_from\" supports IPv4 only");
+ "\"set_realip_from\" supports IPv4 only");
return NGX_CONF_ERROR;
}