diff options
author | Ruslan Ermilov <ru@nginx.com> | 2011-11-23 10:16:30 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@nginx.com> | 2011-11-23 10:16:30 +0000 |
commit | ca2cce23cc0df265a589c006ba4a9d7310df6104 (patch) | |
tree | 2e08a490b538c6c68cac1c64f1e8e04596d174be /src | |
parent | 79df789b47581ef45aaa464dd9fae52a83619a4c (diff) | |
download | nginx-ca2cce23cc0df265a589c006ba4a9d7310df6104.tar.gz nginx-ca2cce23cc0df265a589c006ba4a9d7310df6104.zip |
Cosmetics.
Diffstat (limited to 'src')
-rw-r--r-- | src/http/modules/ngx_http_image_filter_module.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/http/modules/ngx_http_image_filter_module.c b/src/http/modules/ngx_http_image_filter_module.c index 31f26ec50..f0c711e29 100644 --- a/src/http/modules/ngx_http_image_filter_module.c +++ b/src/http/modules/ngx_http_image_filter_module.c @@ -115,7 +115,7 @@ static ngx_int_t ngx_http_image_filter_init(ngx_conf_t *cf); static ngx_command_t ngx_http_image_filter_commands[] = { { ngx_string("image_filter"), - NGX_HTTP_LOC_CONF|NGX_CONF_TAKE13|NGX_CONF_TAKE2, + NGX_HTTP_LOC_CONF|NGX_CONF_TAKE123, ngx_http_image_filter, NGX_HTTP_LOC_CONF_OFFSET, 0, @@ -1405,7 +1405,7 @@ ngx_http_image_filter_jpeg_quality(ngx_conf_t *cf, ngx_command_t *cmd, if (n <= 0) { ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, - "invalid parameter \"%V\"", &value[1]); + "invalid value \"%V\"", &value[1]); return NGX_CONF_ERROR; } @@ -1452,7 +1452,7 @@ ngx_http_image_filter_sharpen(ngx_conf_t *cf, ngx_command_t *cmd, if (n < 0) { ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, - "invalid parameter \"%V\"", &value[1]); + "invalid value \"%V\"", &value[1]); return NGX_CONF_ERROR; } |