# HG changeset patch # User Igor Sysoev # Date 1305105937 0 # Node ID 2b92090d8a43b8ee99f1848d0dcb639fef6ffadd # Parent 97a4df13debcc59943c30d281a333846d7dfa4ef fix typo diff --git a/src/http/modules/ngx_http_geoip_module.c b/src/http/modules/ngx_http_geoip_module.c --- a/src/http/modules/ngx_http_geoip_module.c +++ b/src/http/modules/ngx_http_geoip_module.c @@ -441,7 +441,7 @@ ngx_http_geoip_country(ngx_conf_t *cf, n if (gcf->country == NULL) { ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, - "GeoIO_open(\"%V\") failed", &value[1]); + "GeoIP_open(\"%V\") failed", &value[1]); return NGX_CONF_ERROR; } @@ -491,7 +491,7 @@ ngx_http_geoip_city(ngx_conf_t *cf, ngx_ if (gcf->city == NULL) { ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, - "GeoIO_open(\"%V\") failed", &value[1]); + "GeoIP_open(\"%V\") failed", &value[1]); return NGX_CONF_ERROR; }