diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-11-03 14:41:56 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-11-03 14:41:56 +0000 |
commit | 771e6776742a365be099c3bfc3e472519ceda0d4 (patch) | |
tree | c78be66062a17b83990c1c5d18300e337338bbbb /src | |
parent | 39c9f6e487afe946f8a615c6d2da6c7a3a740d04 (diff) | |
download | nginx-771e6776742a365be099c3bfc3e472519ceda0d4.tar.gz nginx-771e6776742a365be099c3bfc3e472519ceda0d4.zip |
fix directive name in error message: "set_realip_from" to "set_real_ip_from"
Diffstat (limited to 'src')
-rw-r--r-- | src/http/modules/ngx_http_realip_module.c | 2 |
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 e1347027f..4288aaba9 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, - "\"set_realip_from\" supports IPv4 only"); + "\"set_real_ip_from\" supports IPv4 only"); return NGX_CONF_ERROR; } |